1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-01 23:06:41 +00:00
This commit is contained in:
Evil Eye 2023-07-22 08:40:02 +02:00
parent 9d4877d432
commit 6e5d84ce37

View file

@ -33,9 +33,10 @@ namespace ESM
}; };
template <class T> 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 <> template <>
constexpr bool IsReadable<void> = false; inline constexpr bool IsReadable<void> = false;
class ReadersCache; class ReadersCache;