aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Catania <niko@google.com>2010-01-20 16:42:06 -0800
committerNicolas Catania <niko@google.com>2010-01-20 16:42:06 -0800
commit10f1732dfda0396470ddde0bce42a3042c8b985c (patch)
tree6a7bbc1abdfe63423e7c8f9e549282614a1db929
parent6639c206f9cd3eda6530a95c0532091d7e02bfd5 (diff)
downloadgtest-10f1732dfda0396470ddde0bce42a3042c8b985c.tar.gz
Bionic does not provide a cxxabi
-rw-r--r--include/gtest/internal/gtest-type-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/internal/gtest-type-util.h b/include/gtest/internal/gtest-type-util.h
index 1ea7d18..9ea011f 100644
--- a/include/gtest/internal/gtest-type-util.h
+++ b/include/gtest/internal/gtest-type-util.h
@@ -47,7 +47,7 @@
#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
-#ifdef __GNUC__
+#if defined(__GNUC__) && !GTEST_OS_ANDROID
#include <cxxabi.h>
#endif // __GNUC__