From ab646d553bbde70d7aa35341ec858af719dda807 Mon Sep 17 00:00:00 2001 From: Abit Gray Date: Fri, 14 Feb 2025 20:28:09 +0100 Subject: [PATCH] Move `#include ` into version check --- test/gtx/gtx_span.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/gtx/gtx_span.cpp b/test/gtx/gtx_span.cpp index 6a66f437..4ef0dbc9 100644 --- a/test/gtx/gtx_span.cpp +++ b/test/gtx/gtx_span.cpp @@ -3,10 +3,11 @@ #include #include +#if (GLM_LANG & GLM_LANG_CXX20_FLAG) && defined(__cpp_lib_span) && __cpp_lib_span >= 202002L + #define GLM_ENABLE_EXPERIMENTAL #include -#if (GLM_LANG & GLM_LANG_CXX20_FLAG) && defined(__cpp_lib_span) && __cpp_lib_span >= 202002L static int test_span_vec2() { int Error = 0;