Merge branch 'master' into hmqv

pull/263/head
Jeffrey Walton 2016-07-14 02:37:59 -04:00
commit 4647b3eb68
1 changed files with 1 additions and 1 deletions

View File

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