From 4458b8b368620c76cf0e4d02308aa9cf47c08c46 Mon Sep 17 00:00:00 2001
From: rcxpony <rcxpony@rcxpony.name>
Date: Sun, 9 Mar 2025 20:44:07 +0500
Subject: [PATCH] fixes

---
 sources/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sources/main.cpp b/sources/main.cpp
index 11f8908..6219751 100644
--- a/sources/main.cpp
+++ b/sources/main.cpp
@@ -83,7 +83,7 @@ void getRawAddress(int lErase, Key& InvertedPublicKey, Address& rawAddr) {
     rawAddr[1] = static_cast<unsigned char>(lErase - 1);
     memcpy(&rawAddr[2], &InvertedPublicKey[start], 14);
 }
-[[gnu::always_inline]] inline void bitwiseInverse(const unsigned char* key, Key& inverted) noexcept {
+inline void bitwiseInverse(const unsigned char* key, Key& inverted) noexcept {
     __m256i chunk = _mm256_loadu_si256(reinterpret_cast<const __m256i*>(key));
     chunk = _mm256_xor_si256(chunk, _mm256_set1_epi8(0xFF));
     _mm256_storeu_si256(reinterpret_cast<__m256i*>(inverted), chunk);