Replace direct inline variable delcaration with compiler trait protected macro (#590)

Co-authored-by: Morgan Kita <morgan.kita@zuehlke.com>
This commit is contained in:
Morgan Kita
2025-10-29 22:29:19 +01:00
committed by GitHub
parent f37578c425
commit e323f67e5d

View File

@@ -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<typename>
struct in_place_type_t