From e323f67e5d93fdadcd44f7998069d804697b1945 Mon Sep 17 00:00:00 2001 From: Morgan Kita Date: Wed, 29 Oct 2025 22:29:19 +0100 Subject: [PATCH] Replace direct inline variable delcaration with compiler trait protected macro (#590) Co-authored-by: Morgan Kita --- include/EASTL/internal/in_place_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/EASTL/internal/in_place_t.h b/include/EASTL/internal/in_place_t.h index 2bbcc41..13edde4 100644 --- a/include/EASTL/internal/in_place_t.h +++ b/include/EASTL/internal/in_place_t.h @@ -26,7 +26,7 @@ namespace eastl explicit in_place_t() = default; }; - inline constexpr in_place_t in_place{}; + EASTL_CPP17_INLINE_VARIABLE constexpr in_place_t in_place{}; template struct in_place_type_t