Googletest export

Silence C4100 msvc warning

PiperOrigin-RevId: 222242329
This commit is contained in:
misterg 2018-11-20 10:26:17 -05:00 committed by Gennadiy Civil
parent b492666068
commit bb7c0ecbdf

View File

@ -54,6 +54,11 @@
#include <type_traits>
#endif // GTEST_LANG_CXX11
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4100)
#endif
namespace testing {
// To implement an action Foo, define:
@ -1308,4 +1313,9 @@ inline internal::ReferenceWrapper<T> ByRef(T& l_value) { // NOLINT
} // namespace testing
#ifdef _MSC_VER
# pragma warning(pop)
#endif
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_ACTIONS_H_