diff options
author | Jeffrey Walton <noloader@gmail.com> | 2015-07-26 16:03:14 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2015-07-26 16:03:14 -0400 |
commit | b7de164d6251dc066123b59bc15d30c74e920756 (patch) | |
tree | 650e67242386d55616a2038c5cbc7042568ed377 /files.cpp | |
parent | 7b64ca489a7e1da36b02b4a35d149275914d8268 (diff) | |
download | cryptopp-git-b7de164d6251dc066123b59bc15d30c74e920756.tar.gz |
Cut-in CRYPTOPP_ASSERT in all remaining header and source files
Diffstat (limited to 'files.cpp')
-rw-r--r-- | files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ size_t FileStore::CopyRangeTo2(BufferedTransformation &target, lword &begin, lwo m_stream->seekg(newPosition); try { - assert(!m_waiting); + CRYPTOPP_ASSERT(!m_waiting); lword copyMax = end-begin; size_t blockedBytes = const_cast<FileStore *>(this)->TransferTo2(target, copyMax, channel, blocking); begin += copyMax; |