summaryrefslogtreecommitdiff
path: root/regtest3.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-11 12:05:57 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-11 12:05:57 -0400
commit537ee61ade03ee00fa394426319ec6869c0762d3 (patch)
treee383b9e810407985ca6d273a0d0b10757105f2d5 /regtest3.cpp
parentaa287d6112514c7c150047faa732c28f1ac76595 (diff)
downloadcryptopp-git-537ee61ade03ee00fa394426319ec6869c0762d3.tar.gz
Switch to _MSC_FULL_VER for SP1 releases
Diffstat (limited to 'regtest3.cpp')
-rw-r--r--regtest3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/regtest3.cpp b/regtest3.cpp
index 5e66f3bb..292bd544 100644
--- a/regtest3.cpp
+++ b/regtest3.cpp
@@ -22,7 +22,7 @@
#include "sha.h"
// Aggressive stack checking with VS2005 SP1 and above.
-#if (CRYPTOPP_MSC_VERSION >= 1410)
+#if (_MSC_FULL_VER >= 140050727)
# pragma strict_gs_check (on)
#endif