Skip to content

Commit

Permalink
Revert "Bump Visual Studio version number for checked iterators (GH #496
Browse files Browse the repository at this point in the history
)"

This reverts commit 3b6e17b. The version in Master was correct. The version the OP was using was incorrect.
  • Loading branch information
noloader committed Sep 13, 2017
1 parent 3b6e17b commit 6d459af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6d459af

Please sign in to comment.