Fix compiler warning on macos

This commit is contained in:
Leonetienne 2022-06-01 15:28:17 +02:00
parent f0db047316
commit 00d0f81bd9
No known key found for this signature in database
GPG Key ID: 0297FC11AD9236EF

View File

@ -57,9 +57,7 @@ void DataIngestionLayer::Init() {
}
// Derive from our the current module if we're reading ciphertext or not
if (
(Configuration::activeModule == Configuration::MODULE::DECRYPTION)
) {
if (Configuration::activeModule == Configuration::MODULE::DECRYPTION) {
isReadingCiphertext = true;
}
else {