#ifndef OPENMW_COMPONENTS_MISC_TYPETRAITS_H #define OPENMW_COMPONENTS_MISC_TYPETRAITS_H #include #include namespace Misc { template struct IsOptional : std::false_type {}; template struct IsOptional> : std::true_type {}; template inline constexpr bool isOptional = IsOptional::value; } #endif