From 3b6e17b1b4f85c64a47e05b9830041efd7e08c3c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 13 Sep 2017 00:30:57 -0400 Subject: [PATCH] Bump Visual Studio version number for checked iterators (GH #496) --- integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer.cpp b/integer.cpp index 732c7962..a4c933d7 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 >= 140050727) +#if (_MSC_FULL_VER >= 150030729) std::reverse_copy(encodedInteger, encodedInteger+byteCount, stdext::make_checked_array_iterator(block.begin(), block.size())); #else