diff options
author | Jeffrey Walton <noloader@gmail.com> | 2016-01-14 19:08:56 -0500 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2016-01-14 19:08:56 -0500 |
commit | 2b7dba4fa65ab72e75d6867468eeb1da40390daf (patch) | |
tree | c97e812c6cb5d53aba6aa99a3b7b4dd5052405b0 /misc.cpp | |
parent | 58b7d1c41302b051fe9a30076372db890a15563e (diff) | |
download | cryptopp-git-2b7dba4fa65ab72e75d6867468eeb1da40390daf.tar.gz |
Suppressed false positives on -Wcast-align warning
Diffstat (limited to 'misc.cpp')
-rw-r--r-- | misc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ # endif
#endif
+#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
+# pragma GCC diagnostic ignored "-Wcast-align"
+#endif
+
#ifndef CRYPTOPP_IMPORTS
#include "misc.h"
|