summaryrefslogtreecommitdiff
path: root/ec2n.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-02-08 12:12:28 -0500
committerJeffrey Walton <noloader@gmail.com>2020-02-08 12:12:28 -0500
commitea4208c50d512beb2130b5bb7b3fc97f4edc5a9d (patch)
tree48057cbe3e8995f9f88b4c3b2ceef2997945cb7d /ec2n.cpp
parent57160861bb3c047e5a7bfa54c760dc8497542776 (diff)
downloadcryptopp-git-ea4208c50d512beb2130b5bb7b3fc97f4edc5a9d.tar.gz
Whitespace check-in
Diffstat (limited to 'ec2n.cpp')
-rw-r--r--ec2n.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ec2n.cpp b/ec2n.cpp
index 7b6cf451..e58869ba 100644
--- a/ec2n.cpp
+++ b/ec2n.cpp
@@ -16,16 +16,16 @@ ANONYMOUS_NAMESPACE_BEGIN
using CryptoPP::EC2N;
#if defined(HAVE_GCC_INIT_PRIORITY)
- #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 51)))
- const EC2N::Point g_identity INIT_ATTRIBUTE = EC2N::Point();
+ #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 51)))
+ const EC2N::Point g_identity INIT_ATTRIBUTE = EC2N::Point();
#elif defined(HAVE_MSC_INIT_PRIORITY)
- #pragma warning(disable: 4075)
- #pragma init_seg(".CRT$XCU")
- const EC2N::Point g_identity;
- #pragma warning(default: 4075)
+ #pragma warning(disable: 4075)
+ #pragma init_seg(".CRT$XCU")
+ const EC2N::Point g_identity;
+ #pragma warning(default: 4075)
#elif defined(HAVE_XLC_INIT_PRIORITY)
- #pragma priority(290)
- const EC2N::Point g_identity;
+ #pragma priority(290)
+ const EC2N::Point g_identity;
#endif
ANONYMOUS_NAMESPACE_END