summaryrefslogtreecommitdiff
path: root/test/quantize_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/quantize_test.cc')
-rw-r--r--test/quantize_test.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/quantize_test.cc b/test/quantize_test.cc
index e06241ab8..1415ce18e 100644
--- a/test/quantize_test.cc
+++ b/test/quantize_test.cc
@@ -9,6 +9,7 @@
*/
#include <string.h>
+#include <tuple>
#include "third_party/googletest/src/include/gtest/gtest.h"
@@ -33,10 +34,10 @@ const int kNumBlockEntries = 16;
typedef void (*VP8Quantize)(BLOCK *b, BLOCKD *d);
-typedef ::testing::tuple<VP8Quantize, VP8Quantize> VP8QuantizeParam;
+typedef std::tuple<VP8Quantize, VP8Quantize> VP8QuantizeParam;
using libvpx_test::ACMRandom;
-using ::testing::make_tuple;
+using std::make_tuple;
// Create and populate a VP8_COMP instance which has a complete set of
// quantization inputs as well as a second MACROBLOCKD for output.