Fixed comment...

This commit is contained in:
Leonetienne
2021-12-06 13:02:37 +01:00
parent b25640a268
commit 7bcdfcab8b
4 changed files with 20 additions and 18 deletions

View File

@@ -112,6 +112,7 @@ GhettoCipher::Flexblock GhettoCipher::Cipher::Decipher(const Flexblock& data, bo
return ss.str();
}
// These pragmas only work for MSVC and g++, as far as i know. Beware!!!
#if defined _WIN32 || defined _WIN64
#pragma optimize("", off )
#elif defined __GNUG__

View File

@@ -191,7 +191,7 @@ void GhettoCipher::Feistel::GenerateRoundKeys(const Block& seedKey)
return;
}
// These pragmas only work for MSVC, as far as i know. Beware!!!
// These pragmas only work for MSVC and g++, as far as i know. Beware!!!
#if defined _WIN32 || defined _WIN64
#pragma optimize("", off )
#elif defined __GNUG__