summaryrefslogtreecommitdiff
path: root/test/codec_factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/codec_factory.h')
-rw-r--r--test/codec_factory.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/codec_factory.h b/test/codec_factory.h
index 2bfb47360..17c9512ca 100644
--- a/test/codec_factory.h
+++ b/test/codec_factory.h
@@ -10,6 +10,8 @@
#ifndef VPX_TEST_CODEC_FACTORY_H_
#define VPX_TEST_CODEC_FACTORY_H_
+#include <tuple>
+
#include "./vpx_config.h"
#include "vpx/vpx_decoder.h"
#include "vpx/vpx_encoder.h"
@@ -53,22 +55,22 @@ class CodecFactory {
template <class T1>
class CodecTestWithParam
: public ::testing::TestWithParam<
- ::testing::tuple<const libvpx_test::CodecFactory *, T1> > {};
+ std::tuple<const libvpx_test::CodecFactory *, T1> > {};
template <class T1, class T2>
class CodecTestWith2Params
: public ::testing::TestWithParam<
- ::testing::tuple<const libvpx_test::CodecFactory *, T1, T2> > {};
+ std::tuple<const libvpx_test::CodecFactory *, T1, T2> > {};
template <class T1, class T2, class T3>
class CodecTestWith3Params
: public ::testing::TestWithParam<
- ::testing::tuple<const libvpx_test::CodecFactory *, T1, T2, T3> > {};
+ std::tuple<const libvpx_test::CodecFactory *, T1, T2, T3> > {};
template <class T1, class T2, class T3, class T4>
class CodecTestWith4Params
- : public ::testing::TestWithParam< ::testing::tuple<
- const libvpx_test::CodecFactory *, T1, T2, T3, T4> > {};
+ : public ::testing::TestWithParam<
+ std::tuple<const libvpx_test::CodecFactory *, T1, T2, T3, T4> > {};
/*
* VP8 Codec Definitions