summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-09-13 02:03:35 -0400
committerJeffrey Walton <noloader@gmail.com>2017-09-13 02:03:35 -0400
commit6d459afa1580bebee981c0c9d5150a8eb1e2958a (patch)
tree22ff48e614ef4db4aa4ffe21fdbde4d7aa584f97 /integer.cpp
parent3b6e17b1b4f85c64a47e05b9830041efd7e08c3c (diff)
downloadcryptopp-git-6d459afa1580bebee981c0c9d5150a8eb1e2958a.tar.gz
Revert "Bump Visual Studio version number for checked iterators (GH #496)"
This reverts commit 3b6e17b1. The version in Master was correct. The version the OP was using was incorrect.
Diffstat (limited to 'integer.cpp')
-rw-r--r--integer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/integer.cpp b/integer.cpp
index a4c933d7..732c7962 100644
--- a/integer.cpp
+++ b/integer.cpp
@@ -3048,7 +3048,7 @@ Integer::Integer(const byte *encodedInteger, size_t byteCount, Signedness s, Byt
if (o == LITTLE_ENDIAN_ORDER)
{
SecByteBlock block(byteCount);
-#if (_MSC_FULL_VER >= 150030729)
+#if (_MSC_FULL_VER >= 140050727)
std::reverse_copy(encodedInteger, encodedInteger+byteCount,
stdext::make_checked_array_iterator(block.begin(), block.size()));
#else