diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-09-14 05:35:59 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2010-09-14 05:35:59 +0000 |
commit | dac3e879c56a50696a36f53e1e5e353e48fa665f (patch) | |
tree | 153342e638fc52dae7800c9de65ab4576cf52b26 /include/gtest/gtest.h | |
parent | 88e0df62470fa82e8d3010ef88241cd7565ebe9e (diff) | |
download | googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.tar.gz googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.tar.bz2 googletest-dac3e879c56a50696a36f53e1e5e353e48fa665f.zip |
Include gtest headers as user headers instead of system headers.
Diffstat (limited to 'include/gtest/gtest.h')
-rw-r--r-- | include/gtest/gtest.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/gtest/gtest.h b/include/gtest/gtest.h index 41d27965..334a52d1 100644 --- a/include/gtest/gtest.h +++ b/include/gtest/gtest.h @@ -54,15 +54,15 @@ #include <limits> #include <vector> -#include <gtest/internal/gtest-internal.h> -#include <gtest/internal/gtest-string.h> -#include <gtest/gtest-death-test.h> -#include <gtest/gtest-message.h> -#include <gtest/gtest-param-test.h> -#include <gtest/gtest-printers.h> -#include <gtest/gtest_prod.h> -#include <gtest/gtest-test-part.h> -#include <gtest/gtest-typed-test.h> +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-string.h" +#include "gtest/gtest-death-test.h" +#include "gtest/gtest-message.h" +#include "gtest/gtest-param-test.h" +#include "gtest/gtest-printers.h" +#include "gtest/gtest_prod.h" +#include "gtest/gtest-test-part.h" +#include "gtest/gtest-typed-test.h" // Depending on the platform, different string classes are available. // On Linux, in addition to ::std::string, Google also makes use of @@ -1736,7 +1736,7 @@ const T* TestWithParam<T>::parameter_ = NULL; // Includes the auto-generated header that implements a family of // generic predicate assertion macros. -#include <gtest/gtest_pred_impl.h> +#include "gtest/gtest_pred_impl.h" // Macros for testing equalities and inequalities. // |