mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-31 07:36:41 +00:00
inline
This commit is contained in:
parent
9d4877d432
commit
6e5d84ce37
1 changed files with 3 additions and 2 deletions
|
@ -33,9 +33,10 @@ namespace ESM
|
|||
};
|
||||
|
||||
template <class T>
|
||||
constexpr bool IsReadable = std::is_arithmetic_v<T> || std::is_enum_v<T> || IsReadable<typename GetArray<T>::type>;
|
||||
inline constexpr bool IsReadable
|
||||
= std::is_arithmetic_v<T> || std::is_enum_v<T> || IsReadable<typename GetArray<T>::type>;
|
||||
template <>
|
||||
constexpr bool IsReadable<void> = false;
|
||||
inline constexpr bool IsReadable<void> = false;
|
||||
|
||||
class ReadersCache;
|
||||
|
||||
|
|
Loading…
Reference in a new issue