summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-11 12:05:57 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-11 12:05:57 -0400
commit537ee61ade03ee00fa394426319ec6869c0762d3 (patch)
treee383b9e810407985ca6d273a0d0b10757105f2d5 /integer.cpp
parentaa287d6112514c7c150047faa732c28f1ac76595 (diff)
downloadcryptopp-git-537ee61ade03ee00fa394426319ec6869c0762d3.tar.gz
Switch to _MSC_FULL_VER for SP1 releases
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 317ad89f..ae9e1a1f 100644
--- a/integer.cpp
+++ b/integer.cpp
@@ -3048,7 +3048,7 @@ Integer::Integer(const byte *encodedInteger, size_t byteCount, Signedness s, Byt
if (o == LITTLE_ENDIAN_ORDER)
{
SecByteBlock block(byteCount);
-#if (CRYPTOPP_MSC_VERSION >= 1410)
+#if (_MSC_FULL_VER >= 140050727)
std::reverse_copy(encodedInteger, encodedInteger+byteCount,
stdext::make_checked_array_iterator(block.begin(), block.size()));
#else