test: remove not needed pragma

Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2025-01-22 23:33:35 +00:00
committed by Compute-Runtime-Automation
parent 0e57009f6a
commit e95b45b908

View File

@@ -26,12 +26,6 @@
#include <vector>
bool verbose = true;
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-overflow"
// ignoring stringop-oveflow due to false positive warning on GCC13 after enabling C++20
#endif
typedef struct {
zes_firmware_handle_t firmwareHandle;
std::mutex firmwareProgressMutex;
@@ -1939,7 +1933,3 @@ int main(int argc, char *argv[]) {
return 0;
}
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif