diff options
author | Abseil Team <absl-team@google.com> | 2020-01-27 16:00:21 -0500 |
---|---|---|
committer | Andy Getz <durandal@google.com> | 2020-02-07 13:34:26 -0500 |
commit | 38f6608e8790437063fff2c960609e95f0ead6fe (patch) | |
tree | 76de215f650d3ef265f8fd4c9b5c09cae9202f02 /googlemock | |
parent | d6ce39edf612382b9f5078cbce1b637fdc0cba05 (diff) | |
download | googletest-38f6608e8790437063fff2c960609e95f0ead6fe.tar.gz googletest-38f6608e8790437063fff2c960609e95f0ead6fe.tar.bz2 googletest-38f6608e8790437063fff2c960609e95f0ead6fe.zip |
Googletest export
Add includes for type_traits and utility to gmock-function-mocker.h: macros in the file require these headers.
PiperOrigin-RevId: 291782497
Diffstat (limited to 'googlemock')
-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 c5291412..77a66330 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" |