From be4cc91a63fb9ddffd19554348e22fa4b1e04d28 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 13 Jul 2016 11:01:24 -0400 Subject: [PATCH] Cleared SDLC warning under Visual Studio 2005 --- integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer.cpp b/integer.cpp index a4642e3e..206a6238 100644 --- a/integer.cpp +++ b/integer.cpp @@ -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