diff options
author | Robin Lindén <dev@robinlinden.eu> | 2018-11-10 14:27:33 (GMT) |
---|---|---|
committer | Robin Lindén <dev@robinlinden.eu> | 2018-11-10 14:27:33 (GMT) |
commit | c43603f288f40f21998a98f7e74c4206323f417e (patch) | |
tree | 971a14178bfed4bf8c5fcd782c5a019df4435147 /googletest/include/gtest/internal/gtest-port.h | |
parent | 826656b25f62ed0a2fadc7c5dde303616e621c08 (diff) | |
download | googletest-c43603f288f40f21998a98f7e74c4206323f417e.zip googletest-c43603f288f40f21998a98f7e74c4206323f417e.tar.gz googletest-c43603f288f40f21998a98f7e74c4206323f417e.tar.bz2 |
Remove GTEST_HAS_HASH_SET/MAP check
Diffstat (limited to 'googletest/include/gtest/internal/gtest-port.h')
-rw-r--r-- | googletest/include/gtest/internal/gtest-port.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h index 9989b6b..998be27 100644 --- a/googletest/include/gtest/internal/gtest-port.h +++ b/googletest/include/gtest/internal/gtest-port.h @@ -598,15 +598,6 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION; # include <time.h> // NOLINT #endif -// Determines if hash_map/hash_set are available. -// Only used for testing against those containers. -#if !defined(GTEST_HAS_HASH_MAP_) -# if defined(_MSC_VER) && (_MSC_VER < 1900) -# define GTEST_HAS_HASH_MAP_ 1 // Indicates that hash_map is available. -# define GTEST_HAS_HASH_SET_ 1 // Indicates that hash_set is available. -# endif // _MSC_VER -#endif // !defined(GTEST_HAS_HASH_MAP_) - // Determines whether clone(2) is supported. // Usually it will only be available on Linux, excluding // Linux on the Itanium architecture. |