From 89502d05ae802a79deb38b73a85266252a2200f5 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 3 Feb 2022 14:25:15 -0500 Subject: [PATCH] raymath: Ignore missing field initializer warnings --- include/raymath.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/raymath.hpp b/include/raymath.hpp index 0c1c4262..0515b263 100644 --- a/include/raymath.hpp +++ b/include/raymath.hpp @@ -8,7 +8,10 @@ extern "C" { #endif #ifndef RAYLIB_CPP_NO_MATH +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" #include "raymath.h" // NOLINT +#pragma GCC diagnostic pop #endif #ifdef __cplusplus }