summaryrefslogtreecommitdiff
path: root/queue.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-26 16:03:14 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-26 16:03:14 -0400
commitb7de164d6251dc066123b59bc15d30c74e920756 (patch)
tree650e67242386d55616a2038c5cbc7042568ed377 /queue.cpp
parent7b64ca489a7e1da36b02b4a35d149275914d8268 (diff)
downloadcryptopp-git-b7de164d6251dc066123b59bc15d30c74e920756.tar.gz
Cut-in CRYPTOPP_ASSERT in all remaining header and source files
Diffstat (limited to 'queue.cpp')
-rw-r--r--queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queue.cpp b/queue.cpp
index 42ccd971..19943215 100644
--- a/queue.cpp
+++ b/queue.cpp
@@ -462,7 +462,7 @@ byte ByteQueue::operator[](lword i) const
i -= current->CurrentSize();
}
- assert(i < m_lazyLength);
+ CRYPTOPP_ASSERT(i < m_lazyLength);
return m_lazyString[i];
}