Skip to content

Commit

Permalink
core: 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 59d5e59 commit fe76478
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/entt/core/ranges.hpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
#ifndef ENTT_CORE_RANGES_HPP
#define ENTT_CORE_RANGES_HPP

#if __cplusplus >= 202002L

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

template<class... Args>
inline constexpr bool std::ranges::enable_borrowed_range<entt::iterable_adaptor<Args...>>{true};

template<class... Args>
inline constexpr bool std::ranges::enable_view<entt::iterable_adaptor<Args...>>{true};

# endif
#endif

#endif

0 comments on commit fe76478

Please sign in to comment.