Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vendor/cryptopp/integer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3059,7 +3059,7 @@ Integer::Integer(const byte *encodedInteger, size_t byteCount, Signedness s, Byt
else
{
SecByteBlock block(byteCount);
#if (CRYPTOPP_MSC_VERSION >= 1500)
#if (CRYPTOPP_MSC_VERSION >= 1500) && defined(_STDEXT_BEGIN)
std::reverse_copy(encodedInteger, encodedInteger+byteCount,
stdext::make_checked_array_iterator(block.begin(), block.size()));
#else
Expand Down
2 changes: 1 addition & 1 deletion vendor/cryptopp/zdeflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ unsigned int Deflator::LongestMatch(unsigned int &bestMatch) const
#else
std::mismatch
#endif
#if CRYPTOPP_MSC_VERSION >= 1600
#if defined(_STDEXT_BEGIN) && CRYPTOPP_MSC_VERSION >= 1600
(stdext::make_unchecked_array_iterator(scan)+3, stdext::make_unchecked_array_iterator(scanEnd), stdext::make_unchecked_array_iterator(match)+3).first - stdext::make_unchecked_array_iterator(scan));
#else
(scan+3, scanEnd, match+3).first - scan);
Expand Down
Loading