Bump Visual Studio version number for checked iterators (GH #496)

pull/507/head
Jeffrey Walton 2017-09-13 00:30:57 -04:00
parent 502fdc61c9
commit 3b6e17b1b4
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -3048,7 +3048,7 @@ Integer::Integer(const byte *encodedInteger, size_t byteCount, Signedness s, Byt
if (o == LITTLE_ENDIAN_ORDER) if (o == LITTLE_ENDIAN_ORDER)
{ {
SecByteBlock block(byteCount); SecByteBlock block(byteCount);
#if (_MSC_FULL_VER >= 140050727) #if (_MSC_FULL_VER >= 150030729)
std::reverse_copy(encodedInteger, encodedInteger+byteCount, std::reverse_copy(encodedInteger, encodedInteger+byteCount,
stdext::make_checked_array_iterator(block.begin(), block.size())); stdext::make_checked_array_iterator(block.begin(), block.size()));
#else #else