Fixes a user reported test break (modifying a dict while iterating).

This commit is contained in:
vladlosev
2011-08-16 00:47:22 +00:00
parent c2922d4ed2
commit cf3f92ef93
4 changed files with 20 additions and 13 deletions

View File

@@ -678,6 +678,13 @@
# define GTEST_NO_INLINE_
#endif
// _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
#if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
# define GTEST_HAS_CXXABI_H_ 1
#else
# define GTEST_HAS_CXXABI_H_ 0
#endif
namespace testing {
class Message;