Googletest export
Suppress C4503 for MCVS PiperOrigin-RevId: 225871050
This commit is contained in:
parent
0a8b3eb3d6
commit
40d846897d
@ -428,9 +428,11 @@ TEST(DoAllTest, TenActions) {
|
|||||||
// the macro definition, as the warnings are generated when the macro
|
// the macro definition, as the warnings are generated when the macro
|
||||||
// is expanded and macro expansion cannot contain #pragma. Therefore
|
// is expanded and macro expansion cannot contain #pragma. Therefore
|
||||||
// we suppress them here.
|
// we suppress them here.
|
||||||
|
// Also suppress C4503 decorated name length exceeded, name was truncated
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
# pragma warning(push)
|
# pragma warning(push)
|
||||||
# pragma warning(disable:4100)
|
# pragma warning(disable:4100)
|
||||||
|
# pragma warning(disable:4503)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Tests the ACTION*() macro family.
|
// Tests the ACTION*() macro family.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user