Skip to content

Commit 8eae673

Browse files
authored
Disable C4378 for x86-Release (#32)
* Disable C4378 for x86-Release Disable the warning when a 32-bit float is returned which is treated as an error and prevents x86-Release config from building.
1 parent c25bb4f commit 8eae673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party_code/jsoncpp/jsoncpp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ license you like.
7070

7171

7272
#pragma warning( push, 0 )
73-
#pragma warning( disable: 4702 )
73+
#pragma warning( disable: 4702; disable: 4738 )
7474

7575

7676

0 commit comments

Comments
 (0)