diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-09-23 16:41:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 16:41:12 (GMT) |
commit | 659647110426889c003d54c471f3d7c8df633ab4 (patch) | |
tree | 36204ef424efa0e4c7911416fed0c4368c969cd1 /googletest | |
parent | 529338370757d20bf0aae40dd4a9033e18cdd5df (diff) | |
download | googletest-659647110426889c003d54c471f3d7c8df633ab4.zip googletest-659647110426889c003d54c471f3d7c8df633ab4.tar.gz googletest-659647110426889c003d54c471f3d7c8df633ab4.tar.bz2 |
Formatting
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index ca42b06..4dcc587 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -32,14 +32,12 @@ // This header file declares functions and macros used internally by // Google Test. They are subject to change without notice. -// IWYU pragma: private, include "testing/base/public/gunit.h" -// IWYU pragma: friend third_party/googletest/googletest/.* -// IWYU pragma: friend third_party/googletest/googlemock/.* +// GOOGLETEST_CM0001 DO NOT DELETE #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ -#include "third_party/googletest/googletest/include/gtest/internal/gtest-port.h" +#include "gtest/internal/gtest-port.h" #if GTEST_OS_LINUX # include <stdlib.h> @@ -62,10 +60,10 @@ #include <string> #include <vector> -#include "third_party/googletest/googletest/include/gtest/gtest-message.h" -#include "third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h" -#include "third_party/googletest/googletest/include/gtest/internal/gtest-string.h" -#include "third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h" +#include "gtest/gtest-message.h" +#include "gtest/internal/gtest-filepath.h" +#include "gtest/internal/gtest-string.h" +#include "gtest/internal/gtest-type-util.h" // Due to C++ preprocessor weirdness, we need double indirection to // concatenate two tokens when one of them is __LINE__. Writing @@ -754,7 +752,7 @@ class TypeParameterizedTestCase<Fixture, Templates0, Types> { // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by -// the gunit_stack_trace_depth flag. The skip_count parameter +// the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // |