Remove GTEST_HAS_HASH_SET/MAP check
This commit is contained in:
parent
826656b25f
commit
c43603f288
@ -598,15 +598,6 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION;
|
|||||||
# include <time.h> // NOLINT
|
# include <time.h> // NOLINT
|
||||||
#endif
|
#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.
|
// Determines whether clone(2) is supported.
|
||||||
// Usually it will only be available on Linux, excluding
|
// Usually it will only be available on Linux, excluding
|
||||||
// Linux on the Itanium architecture.
|
// Linux on the Itanium architecture.
|
||||||
|
@ -7277,9 +7277,6 @@ TEST(IsHashTable, Basic) {
|
|||||||
EXPECT_FALSE(testing::internal::IsHashTable<NotReallyAHashTable>::value);
|
EXPECT_FALSE(testing::internal::IsHashTable<NotReallyAHashTable>::value);
|
||||||
EXPECT_FALSE(testing::internal::IsHashTable<std::vector<int>>::value);
|
EXPECT_FALSE(testing::internal::IsHashTable<std::vector<int>>::value);
|
||||||
EXPECT_TRUE(testing::internal::IsHashTable<std::unordered_set<int>>::value);
|
EXPECT_TRUE(testing::internal::IsHashTable<std::unordered_set<int>>::value);
|
||||||
#if GTEST_HAS_HASH_SET_
|
|
||||||
EXPECT_TRUE(testing::internal::IsHashTable<__gnu_cxx::hash_set<int>>::value);
|
|
||||||
#endif // GTEST_HAS_HASH_SET_
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tests ArrayEq().
|
// Tests ArrayEq().
|
||||||
|
Loading…
Reference in New Issue
Block a user