Skip to content

Commit

Permalink
entity: update guard for ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Jul 9, 2024
1 parent fe76478 commit 9e79853
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/entt/entity/ranges.hpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#ifndef ENTT_ENTITY_RANGES_HPP
#define ENTT_ENTITY_RANGES_HPP

#if __cplusplus >= 202002L

# include <ranges>
# include "fwd.hpp"
#if __has_include(<version>)
# include <version>
#
# if defined(__cpp_lib_ranges)
# include <ranges>
# include "fwd.hpp"

template<class... Args>
inline constexpr bool std::ranges::enable_borrowed_range<entt::basic_view<Args...>>{true};
Expand All @@ -18,6 +20,7 @@ inline constexpr bool std::ranges::enable_view<entt::basic_view<Args...>>{true};
template<class... Args>
inline constexpr bool std::ranges::enable_view<entt::basic_group<Args...>>{true};

# endif
#endif

#endif

0 comments on commit 9e79853

Please sign in to comment.