Cleared SDLC warning under Visual Studio 2005

pull/239/head
Jeffrey Walton 2016-07-13 11:01:24 -04:00
parent 77b36f5a0a
commit be4cc91a63
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) if(o == LITTLE_ENDIAN_ORDER)
{ {
SecByteBlock block(byteCount); SecByteBlock block(byteCount);
#if (CRYPTOPP_MSC_VERSION >= 1500) #if (CRYPTOPP_MSC_VERSION >= 1400)
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