From ee04ab256dc682ceb13f11983c6008da00e99422 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Mon, 6 Jan 2025 12:05:07 -0500 Subject: [PATCH] fix: revert workaround -Wstringop-overflow warnings from fmt (#319) --- src/iguana/services/Logger.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/iguana/services/Logger.h b/src/iguana/services/Logger.h index 9044b1a6..11202f52 100644 --- a/src/iguana/services/Logger.h +++ b/src/iguana/services/Logger.h @@ -1,21 +1,8 @@ #pragma once -// workaround https://github.com/fmtlib/fmt/issues/4133 -#ifdef __clang__ -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wshift-overflow" -#else -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstringop-overflow" -#endif #include #include #include -#ifdef __clang__ -#pragma clang diagnostic pop -#else -#pragma GCC diagnostic pop -#endif #include #include