summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-08-20 05:35:34 -0400
committerJeffrey Walton <noloader@gmail.com>2018-08-20 05:35:34 -0400
commit874f79c32061da48291f63d60d90fe17ca5a874b (patch)
tree99804730d5d8d37264d4dc44cf8a5f12633778d5 /integer.cpp
parent5c3532597a924b256db2bf670bba0887d6fbb460 (diff)
downloadcryptopp-git-874f79c32061da48291f63d60d90fe17ca5a874b.tar.gz
Fix compile on Visual Studio 2005 without serve packs
Diffstat (limited to 'integer.cpp')
-rw-r--r--integer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/integer.cpp b/integer.cpp
index c33aa055..54f7c1fa 100644
--- a/integer.cpp
+++ b/integer.cpp
@@ -3024,7 +3024,7 @@ Integer::Integer(const byte *encodedInteger, size_t byteCount, Signedness s, Byt
else
{
SecByteBlock block(byteCount);
-#if (_MSC_FULL_VER >= 140050727)
+#if (_MSC_VER >= 1500)
std::reverse_copy(encodedInteger, encodedInteger+byteCount,
stdext::make_checked_array_iterator(block.begin(), block.size()));
#else