From 52b3a87dae5df9b4fcacd2dc2e61a730b7352abd Mon Sep 17 00:00:00 2001 From: elsid Date: Sat, 5 Feb 2022 16:32:40 +0100 Subject: [PATCH] Make constexpr variable defined in header inline --- components/serialization/format.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/serialization/format.hpp b/components/serialization/format.hpp index 956345149c..29fc0ec42d 100644 --- a/components/serialization/format.hpp +++ b/components/serialization/format.hpp @@ -27,7 +27,7 @@ namespace Serialization struct IsContiguousContainer> : std::true_type {}; template - constexpr bool isContiguousContainer = IsContiguousContainer>::value; + inline constexpr bool isContiguousContainer = IsContiguousContainer>::value; template struct Format