From 5cb627d725807ef66356b0ae05aeae01f987512b Mon Sep 17 00:00:00 2001 From: Stephen Berry Date: Mon, 13 Jan 2025 11:55:34 -0600 Subject: [PATCH] GCC fix? --- include/glaze/reflection/to_tuple.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/glaze/reflection/to_tuple.hpp b/include/glaze/reflection/to_tuple.hpp index 848429a358..826c6bdedf 100644 --- a/include/glaze/reflection/to_tuple.hpp +++ b/include/glaze/reflection/to_tuple.hpp @@ -32,7 +32,7 @@ namespace glz [[maybe_unused]] constexpr operator T() const; #else #pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wuninitialized" +#pragma GCC diagnostic ignored "-Werror=undefined-symbols" #pragma GCC diagnostic ignored "-Wmissing-declarations" template requires(!std::same_as && !std::same_as)