Skip to content
Snippets Groups Projects
Commit 7515e399 authored by misterg's avatar misterg Committed by Gennadiy Civil
Browse files

Googletest export

Suppress C4503 for MCVS

PiperOrigin-RevId: 225871050
parent 85c4172e
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment