summaryrefslogtreecommitdiff
path: root/test/superframe_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/superframe_test.cc')
-rw-r--r--test/superframe_test.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/superframe_test.cc b/test/superframe_test.cc
index d913871c5..8c8d1ae29 100644
--- a/test/superframe_test.cc
+++ b/test/superframe_test.cc
@@ -8,6 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include <climits>
+#include <tuple>
+
#include "third_party/googletest/src/include/gtest/gtest.h"
#include "test/codec_factory.h"
#include "test/encode_test_driver.h"
@@ -18,7 +20,7 @@ namespace {
const int kTestMode = 0;
-typedef ::testing::tuple<libvpx_test::TestMode, int> SuperframeTestParam;
+typedef std::tuple<libvpx_test::TestMode, int> SuperframeTestParam;
class SuperframeTest
: public ::libvpx_test::EncoderTest,
@@ -31,7 +33,7 @@ class SuperframeTest
virtual void SetUp() {
InitializeConfig();
const SuperframeTestParam input = GET_PARAM(1);
- const libvpx_test::TestMode mode = ::testing::get<kTestMode>(input);
+ const libvpx_test::TestMode mode = std::get<kTestMode>(input);
SetMode(mode);
sf_count_ = 0;
sf_count_max_ = INT_MAX;