#ifndef ENTT_CORE_CONCEPTS_HPP #define ENTT_CORE_CONCEPTS_HPP #include "../stl/type_traits.hpp" namespace entt { /** * @brief Specifies that a type is not a cv-qualified reference. * @tparam Type Type to check. */ template concept cvref_unqualified = stl::is_same_v, Type>; } // namespace entt #endif