We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c7dc38 commit debfec5Copy full SHA for debfec5
src/stdafx.h
@@ -24,6 +24,12 @@
24
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
25
#pragma warning(disable: 5045) // Compiler will insert Spectre mitigation for memory load if /Qspectre switch specified
26
27
+// Hack for 32-bit release builds
28
+#pragma warning(push)
29
+#pragma warning(disable: 4738)
30
+#include <corecrt_math.h>
31
+#pragma warning(pop)
32
+
33
#include <afxwin.h> // MFC core and standard components
34
#include <afxext.h> // MFC extensions
35
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
0 commit comments