summaryrefslogtreecommitdiff
path: root/gcm.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-12-03 21:31:22 -0500
committerJeffrey Walton <noloader@gmail.com>2016-12-03 21:31:22 -0500
commit56a91ca1971d8e8df8bde1fcec512ddb93b72bbf (patch)
tree7d2394a2cd812fab2bd659d368b74b3908015e19 /gcm.cpp
parenta274a64058b8dc5b66f6e50dbd0e0250eaed08e8 (diff)
downloadcryptopp-git-56a91ca1971d8e8df8bde1fcec512ddb93b72bbf.tar.gz
Remove last of macros targtting _MSC_VER 1200 (Issue 342)
Diffstat (limited to 'gcm.cpp')
-rw-r--r--gcm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcm.cpp b/gcm.cpp
index a7f9f494..362c358a 100644
--- a/gcm.cpp
+++ b/gcm.cpp
@@ -255,7 +255,7 @@ void GCM_Base::SetKeyWithoutResync(const byte *userKey, size_t keylength, const
else
tableSize = (GetTablesOption() == GCM_64K_Tables) ? 64*1024 : 2*1024;
-#if defined(_MSC_VER) && (_MSC_VER >= 1300 && _MSC_VER < 1400)
+#if defined(_MSC_VER) && (_MSC_VER < 1400)
// VC 2003 workaround: compiler generates bad code for 64K tables
tableSize = 2*1024;
#endif