Ignore frame-address warning

This commit is contained in:
Alex 2023-03-26 21:16:26 +03:00
parent c6da67a7a3
commit e6c103c671
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -5,7 +5,11 @@
#include "../kernel.h"
// #define PRINT_BACKTRACE
#define PRINT_BACKTRACE
#ifdef PRINT_BACKTRACE
#pragma GCC diagnostic ignored "-Wframe-address"
#endif
bool ForceUnlock = false;
Atomic<size_t> LocksCount = 0;