Fix compiler crash in Visual Studio .Net (2002 and 2003)
parent
3e9a5f17d2
commit
c24f17b7a2
5
gcm.cpp
5
gcm.cpp
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue