Fix compiler crash in Visual Studio .Net (2002 and 2003)

pull/709/head
Jeffrey Walton 2018-08-20 08:24:12 -04:00
parent 3e9a5f17d2
commit c24f17b7a2
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@
# undef CRYPTOPP_SSE2_ASM_AVAILABLE # undef CRYPTOPP_SSE2_ASM_AVAILABLE
#endif #endif
// Visual Studio .Net 2003 compiler crash
#if defined(_MSC_VER) && (_MSC_VER < 1400)
# pragma optimize("", off)
#endif
#include "gcm.h" #include "gcm.h"
#include "cpu.h" #include "cpu.h"