summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-10-27 07:30:15 -0400
committerJeffrey Walton <noloader@gmail.com>2018-10-27 07:30:15 -0400
commit04306f86ac3687b96f6325e862b6d1ee9233dec0 (patch)
tree69eddd42027aa62035d4f7c75dac53a9594b988b /integer.cpp
parent8b00a9ff3fa30b048e892a1b3d77550d685b66a4 (diff)
downloadcryptopp-git-04306f86ac3687b96f6325e862b6d1ee9233dec0.tar.gz
Sync CRYPTOPP_{BIG|LITTLE}_ENDIAN with Autotools
Diffstat (limited to 'integer.cpp')
-rw-r--r--integer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/integer.cpp b/integer.cpp
index ff807547..35420c58 100644
--- a/integer.cpp
+++ b/integer.cpp
@@ -285,7 +285,7 @@ public:
#endif
{
#if defined(CRYPTOPP_NATIVE_DWORD_AVAILABLE)
-# if defined(CRYPTOPP_LITTLE_ENDIAN)
+# if (CRYPTOPP_LITTLE_ENDIAN)
const word t[2] = {low,high};
memcpy(&m_whole, t, sizeof(m_whole));
# else