summaryrefslogtreecommitdiff
path: root/ecp.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 /ecp.cpp
parent57160861bb3c047e5a7bfa54c760dc8497542776 (diff)
downloadcryptopp-git-ea4208c50d512beb2130b5bb7b3fc97f4edc5a9d.tar.gz
Whitespace check-in
Diffstat (limited to 'ecp.cpp')
-rw-r--r--ecp.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ecp.cpp b/ecp.cpp
index 1a3a244f..c649aba6 100644
--- a/ecp.cpp
+++ b/ecp.cpp
@@ -19,16 +19,16 @@ using CryptoPP::Integer;
using CryptoPP::ModularArithmetic;
#if defined(HAVE_GCC_INIT_PRIORITY)
- #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 50)))
- const ECP::Point g_identity INIT_ATTRIBUTE = ECP::Point();
+ #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 50)))
+ const ECP::Point g_identity INIT_ATTRIBUTE = ECP::Point();
#elif defined(HAVE_MSC_INIT_PRIORITY)
- #pragma warning(disable: 4075)
- #pragma init_seg(".CRT$XCU")
- const ECP::Point g_identity;
- #pragma warning(default: 4075)
+ #pragma warning(disable: 4075)
+ #pragma init_seg(".CRT$XCU")
+ const ECP::Point g_identity;
+ #pragma warning(default: 4075)
#elif defined(HAVE_XLC_INIT_PRIORITY)
- #pragma priority(290)
- const ECP::Point g_identity;
+ #pragma priority(290)
+ const ECP::Point g_identity;
#endif
inline ECP::Point ToMontgomery(const ModularArithmetic &mr, const ECP::Point &P)