summaryrefslogtreecommitdiff
path: root/fips140.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 /fips140.cpp
parent7b64ca489a7e1da36b02b4a35d149275914d8268 (diff)
downloadcryptopp-git-b7de164d6251dc066123b59bc15d30c74e920756.tar.gz
Cut-in CRYPTOPP_ASSERT in all remaining header and source files
Diffstat (limited to 'fips140.cpp')
-rw-r--r--fips140.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips140.cpp b/fips140.cpp
index 447e70c0..fe6937d2 100644
--- a/fips140.cpp
+++ b/fips140.cpp
@@ -61,7 +61,7 @@ bool PowerUpSelfTestInProgressOnThisThread()
#if CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2
return AccessPowerUpSelfTestInProgress().GetValue() != NULL;
#else
- assert(false); // should not be called
+ CRYPTOPP_ASSERT(false); // should not be called
return false;
#endif
}