[flang][msvc] Fix compilation of RuntimeGtest

Removes alternate spelling 'not' with '!'.

Reviewed by: ashermancinelli, awarzynski, Meinersbur

Differential revision: https://reviews.llvm.org/D100442
This commit is contained in:
Mehdi Chinoune 2021-04-20 12:52:47 -06:00 committed by Asher Mancinelli
parent 41b71f718b
commit 080d48f279

View File

@ -28,7 +28,7 @@
// Register the crash handler above when creating each unit test in this suite
void CrashHandlerFixture::SetUp() {
static bool isCrashHanlderRegistered{false};
if (not isCrashHanlderRegistered)
if (!isCrashHanlderRegistered)
Fortran::runtime::Terminator::RegisterCrashHandler(CatchCrash);
isCrashHanlderRegistered = true;
}