Make constexpr variable defined in header inline

C++20
elsid 3 years ago
parent 9584cb7ac2
commit 52b3a87dae
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -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…
Cancel
Save