aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/test/gtest-printers_test.cc
diff options
context:
space:
mode:
authorBilly Donahue <BillyDonahue@users.noreply.github.com>2017-05-02 14:53:21 -0400
committerGitHub <noreply@github.com>2017-05-02 14:53:21 -0400
commit0ad83afdaa3319dadd9f03299bd62f93e6afe2d3 (patch)
treeb1ce97f8600b713f796b4984c867cb75d585eabc /googletest/test/gtest-printers_test.cc
parent69c6db249af5e74cf5b6d6b455813f79faf52835 (diff)
parent518e0519ca49c3a6504d1e377c5a467434d5f719 (diff)
downloadgoogletest-0ad83afdaa3319dadd9f03299bd62f93e6afe2d3.tar.gz
googletest-0ad83afdaa3319dadd9f03299bd62f93e6afe2d3.tar.bz2
googletest-0ad83afdaa3319dadd9f03299bd62f93e6afe2d3.zip
Merge pull request #1034 from dankegel/master
Minimal changes to fix build failures on Microsoft Visual Studio 2015
Diffstat (limited to 'googletest/test/gtest-printers_test.cc')
-rw-r--r--googletest/test/gtest-printers_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/googletest/test/gtest-printers_test.cc b/googletest/test/gtest-printers_test.cc
index af69f282..107b10f6 100644
--- a/googletest/test/gtest-printers_test.cc
+++ b/googletest/test/gtest-printers_test.cc
@@ -216,6 +216,7 @@ using ::testing::internal::UniversalTersePrintTupleFieldsToStrings;
#endif
using ::testing::internal::string;
+#if GTEST_HAS_HASH_MAP_
// The hash_* classes are not part of the C++ standard. STLport
// defines them in namespace std. MSVC defines them in ::stdext. GCC
// defines them in ::.
@@ -230,6 +231,7 @@ using ::stdext::hash_set;
using ::stdext::hash_multimap;
using ::stdext::hash_multiset;
#endif
+#endif
// Prints a value to a string using the universal value printer. This
// is a helper for testing UniversalPrinter<T>::Print() for various types.