diff options
author | misterg <misterg@google.com> | 2018-12-17 20:35:22 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-12-17 20:37:31 (GMT) |
commit | 7515e399436a832a0109d64a70b4e1125568dda5 (patch) | |
tree | 86e085cb2445b03c1bda9bc7ff53d75780be60c4 /googlemock/test/gmock-generated-actions_test.cc | |
parent | 85c4172ed66e59c747777f5cfebcec2991cca8b8 (diff) | |
download | googletest-7515e399436a832a0109d64a70b4e1125568dda5.zip googletest-7515e399436a832a0109d64a70b4e1125568dda5.tar.gz googletest-7515e399436a832a0109d64a70b4e1125568dda5.tar.bz2 |
Googletest export
Suppress C4503 for MCVS
PiperOrigin-RevId: 225871050
Diffstat (limited to 'googlemock/test/gmock-generated-actions_test.cc')
-rw-r--r-- | googlemock/test/gmock-generated-actions_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/googlemock/test/gmock-generated-actions_test.cc b/googlemock/test/gmock-generated-actions_test.cc index 0fe43ab..2371102 100644 --- a/googlemock/test/gmock-generated-actions_test.cc +++ b/googlemock/test/gmock-generated-actions_test.cc @@ -428,9 +428,11 @@ TEST(DoAllTest, TenActions) { // the macro definition, as the warnings are generated when the macro // is expanded and macro expansion cannot contain #pragma. Therefore // we suppress them here. +// Also suppress C4503 decorated name length exceeded, name was truncated #ifdef _MSC_VER # pragma warning(push) # pragma warning(disable:4100) +# pragma warning(disable:4503) #endif // Tests the ACTION*() macro family. |