#ifndef ENTT_CORE_RANGES_HPP #define ENTT_CORE_RANGES_HPP #include #if defined(__cpp_lib_ranges) # include # include "iterator.hpp" namespace std::ranges { template inline constexpr bool enable_borrowed_range>{true}; template inline constexpr bool enable_view>{true}; } // namespace std::ranges #endif #endif