summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-09-14 05:35:59 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2010-09-14 05:35:59 +0000
commit2620c79810d4741922e9fa89050c0af564994f24 (patch)
tree153342e638fc52dae7800c9de65ab4576cf52b26 /README
parentb15c73341d7a7abff7a04e1de18de59ba0f34009 (diff)
downloadgoogletest-2620c79810d4741922e9fa89050c0af564994f24.tar.gz
Include gtest headers as user headers instead of system headers.
git-svn-id: http://googletest.googlecode.com/svn/trunk@482 861a406c-534a-0410-8894-cb66d6ee9925
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index 792abf3..b82c5b5 100644
--- a/README
+++ b/README
@@ -262,7 +262,7 @@ and all features using tuple will be disabled.
### Multi-threaded Tests ###
Google Test is thread-safe where the pthread library is available.
-After #include <gtest/gtest.h>, you can check the GTEST_IS_THREADSAFE
+After #include "gtest/gtest.h", you can check the GTEST_IS_THREADSAFE
macro to see whether this is the case (yes if the macro is #defined to
1, no if it's undefined.).