diff options
author | kosak <kosak@google.com> | 2014-04-02 20:26:07 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2014-04-02 20:26:07 +0000 |
commit | 5df87d70b64dd8080ab9e3f1b0250e74715e2a60 (patch) | |
tree | f98b39a800f0e172c1b0c04e458d89009b6e351f /test | |
parent | a6340420b9cee27f77c5b91bea807121914a5831 (diff) | |
download | googletest-5df87d70b64dd8080ab9e3f1b0250e74715e2a60.tar.gz googletest-5df87d70b64dd8080ab9e3f1b0250e74715e2a60.tar.bz2 googletest-5df87d70b64dd8080ab9e3f1b0250e74715e2a60.zip |
Export tuple and friends in the ::testing namespace.
Diffstat (limited to 'test')
-rw-r--r-- | test/gtest-param-test_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gtest-param-test_test.cc b/test/gtest-param-test_test.cc index f60cb8a5..cc1dc65f 100644 --- a/test/gtest-param-test_test.cc +++ b/test/gtest-param-test_test.cc @@ -64,9 +64,9 @@ using ::testing::ValuesIn; # if GTEST_HAS_COMBINE using ::testing::Combine; -using ::std::tr1::get; -using ::std::tr1::make_tuple; -using ::std::tr1::tuple; +using ::testing::get; +using ::testing::make_tuple; +using ::testing::tuple; # endif // GTEST_HAS_COMBINE using ::testing::internal::ParamGenerator; |