diff options
author | Jeffrey Walton <noloader@gmail.com> | 2016-10-17 22:00:31 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2016-10-17 22:00:31 -0400 |
commit | 54d17c7361dc97313ca0ad54bf07420e33a735c0 (patch) | |
tree | e61a6f7451df5f1bb280d7e0bab21b7100551ac3 /test.cpp | |
parent | b7423a3bf73aef511ff310631955ff378c6fee7e (diff) | |
download | cryptopp-git-54d17c7361dc97313ca0ad54bf07420e33a735c0.tar.gz |
Updated CRYPTOPP_ASSERT based on comments
Also see https://github.com/weidai11/cryptopp/commit/399a1546de71f41598c15edada28e7f0d616f541#commitcomment-19448453
Diffstat (limited to 'test.cpp')
-rw-r--r-- | test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ RandomNumberGenerator & GlobalRNG() }
// See misc.h and trap.h for comments and usage
-#if CRYPTOPP_DEBUG && defined(UNIX_SIGNALS_AVAILABLE)
+#if defined(CRYPTOPP_DEBUG) && defined(UNIX_SIGNALS_AVAILABLE)
static const SignalHandler<SIGTRAP, false> s_dummyHandler;
// static const DebugTrapHandler s_dummyHandler;
#endif
|