From 5f3b9d6d459b41d0676c59bbd36edce1cafbeca8 Mon Sep 17 00:00:00 2001 From: Itms Date: Mon, 2 Dec 2024 17:09:30 +0100 Subject: [PATCH] Ignore cast warning in mongoose This fixes -Wcast-function-type warnings under GCC 8. --- source/third_party/mongoose/mongoose.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/third_party/mongoose/mongoose.cpp b/source/third_party/mongoose/mongoose.cpp index d62597e757..821eded4a5 100644 --- a/source/third_party/mongoose/mongoose.cpp +++ b/source/third_party/mongoose/mongoose.cpp @@ -33,6 +33,7 @@ # pragma GCC diagnostic ignored "-Wunused-function" # ifndef __clang__ # pragma GCC diagnostic ignored "-Wunused-but-set-variable" +# pragma GCC diagnostic ignored "-Wcast-function-type" # endif #endif