diff options
author | Abseil Team <absl-team@google.com> | 2020-01-27 21:00:21 (GMT) |
---|---|---|
committer | Gennadiy Rozental <rogeeff@google.com> | 2020-01-31 00:23:28 (GMT) |
commit | 4d96ea23c0a2d9ea4be8cf222945b4fc05c15474 (patch) | |
tree | 76de215f650d3ef265f8fd4c9b5c09cae9202f02 | |
parent | a575ac40a983a3f449057f67fc42237d933f8c77 (diff) | |
download | googletest-4d96ea23c0a2d9ea4be8cf222945b4fc05c15474.zip googletest-4d96ea23c0a2d9ea4be8cf222945b4fc05c15474.tar.gz googletest-4d96ea23c0a2d9ea4be8cf222945b4fc05c15474.tar.bz2 |
Export Test - Do Not Merge
Add includes for type_traits and utility to gmock-function-mocker.h: macros in the file require these headers.
PiperOrigin-RevId: 291782497
-rw-r--r-- | googlemock/include/gmock/gmock-function-mocker.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/googlemock/include/gmock/gmock-function-mocker.h b/googlemock/include/gmock/gmock-function-mocker.h index c529141..77a6633 100644 --- a/googlemock/include/gmock/gmock-function-mocker.h +++ b/googlemock/include/gmock/gmock-function-mocker.h @@ -36,6 +36,9 @@ #ifndef THIRD_PARTY_GOOGLETEST_GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_FUNCTION_MOCKER_H_ // NOLINT #define THIRD_PARTY_GOOGLETEST_GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_FUNCTION_MOCKER_H_ // NOLINT +#include <type_traits> // IWYU pragma: keep +#include <utility> // IWYU pragma: keep + #include "gmock/gmock-generated-function-mockers.h" // NOLINT #include "gmock/internal/gmock-pp.h" |