diff options
author | Abseil Team <absl-team@google.com> | 2021-02-05 18:49:47 (GMT) |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2021-02-11 17:48:43 (GMT) |
commit | 36b7792047b8dc92a4b749e6e188f1cca3a232c9 (patch) | |
tree | 472565a4fc39bad50a345753c0a25f0eb79de860 /googletest/include/gtest/gtest_pred_impl.h | |
parent | f3ef7e173fd0853069f16c4b5afc7e80a350604b (diff) | |
download | googletest-36b7792047b8dc92a4b749e6e188f1cca3a232c9.zip googletest-36b7792047b8dc92a4b749e6e188f1cca3a232c9.tar.gz googletest-36b7792047b8dc92a4b749e6e188f1cca3a232c9.tar.bz2 |
Googletest export
Make include guards conform with https://google.github.io/styleguide/cppguide.html#The__define_Guard
PiperOrigin-RevId: 355882793
Diffstat (limited to 'googletest/include/gtest/gtest_pred_impl.h')
-rw-r--r-- | googletest/include/gtest/gtest_pred_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/include/gtest/gtest_pred_impl.h b/googletest/include/gtest/gtest_pred_impl.h index d514255..5029a9b 100644 --- a/googletest/include/gtest/gtest_pred_impl.h +++ b/googletest/include/gtest/gtest_pred_impl.h @@ -33,8 +33,8 @@ // Implements a family of generic predicate assertion macros. // GOOGLETEST_CM0001 DO NOT DELETE -#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#define GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ #include "gtest/gtest.h" @@ -356,4 +356,4 @@ AssertionResult AssertPred5Helper(const char* pred_text, } // namespace testing -#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#endif // GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ |