mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-31 06:36:39 +00:00
Make constexpr variable defined in header inline
This commit is contained in:
parent
9584cb7ac2
commit
52b3a87dae
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ namespace Serialization
|
|||
struct IsContiguousContainer<std::array<T, n>> : std::true_type {};
|
||||
|
||||
template <class T>
|
||||
constexpr bool isContiguousContainer = IsContiguousContainer<std::decay_t<T>>::value;
|
||||
inline constexpr bool isContiguousContainer = IsContiguousContainer<std::decay_t<T>>::value;
|
||||
|
||||
template <Mode mode, class Derived>
|
||||
struct Format
|
||||
|
|
Loading…
Reference in a new issue