From ea4208c50d512beb2130b5bb7b3fc97f4edc5a9d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 8 Feb 2020 12:12:28 -0500 Subject: Whitespace check-in --- ecp.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ecp.cpp') 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) -- cgit v1.2.1