From 6e5d84ce371f691231b99877159739e5d7858cde Mon Sep 17 00:00:00 2001 From: Evil Eye Date: Sat, 22 Jul 2023 08:40:02 +0200 Subject: [PATCH] inline --- components/esm3/esmreader.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/esm3/esmreader.hpp b/components/esm3/esmreader.hpp index bd66b13b5f..bab11a9fb1 100644 --- a/components/esm3/esmreader.hpp +++ b/components/esm3/esmreader.hpp @@ -33,9 +33,10 @@ namespace ESM }; template - constexpr bool IsReadable = std::is_arithmetic_v || std::is_enum_v || IsReadable::type>; + inline constexpr bool IsReadable + = std::is_arithmetic_v || std::is_enum_v || IsReadable::type>; template <> - constexpr bool IsReadable = false; + inline constexpr bool IsReadable = false; class ReadersCache;