summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-03-27 20:38:26 -0400
committerJeffrey Walton <noloader@gmail.com>2018-03-27 20:38:26 -0400
commit1c60f6480f8132e345c77e066e0fa52e20808fe7 (patch)
treed93d9852c5b092ece98c60af51d955e78bb0316d
parent43ff11a0890919a42266af2ae10e0ae7f07d69d0 (diff)
downloadcryptopp-git-1c60f6480f8132e345c77e066e0fa52e20808fe7.tar.gz
Fix Windows compile error using VS2008
-rw-r--r--cpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu.cpp b/cpu.cpp
index 6e0e4284..dce67c60 100644
--- a/cpu.cpp
+++ b/cpu.cpp
@@ -78,7 +78,7 @@ extern "C"
extern bool CPU_ProbeSSE2();
-#if _MSC_VER >= 1500
+#if _MSC_VER >= 1600
inline bool CpuId(word32 func, word32 subfunc, word32 output[4])
{