From 24b4b75410c184a35f0f1c31719a38f320a19c5c Mon Sep 17 00:00:00 2001 From: dragonmux Date: Sat, 2 Sep 2023 14:44:36 +0100 Subject: [PATCH] remoteSPI: Fixed a few more warnings from lib{fmt} by suppressing them (we can't do anything about them) --- src/remoteSPI.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/remoteSPI.cxx b/src/remoteSPI.cxx index 6a76326..3ded1bd 100644 --- a/src/remoteSPI.cxx +++ b/src/remoteSPI.cxx @@ -9,6 +9,7 @@ #elif defined(__GNUC__) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wswitch-enum" +#pragma GCC diagnostic ignored "-Wsign-conversion" #endif #include #if defined(_MSC_VER)