#ifndef OPENMW_COMPONENTS_MISC_CONCEPTS_H #define OPENMW_COMPONENTS_MISC_CONCEPTS_H #include #include namespace Misc { template concept SameAsWithoutCvref = std::same_as, std::remove_cvref_t>; } #endif