Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Differntiate __cpp_coroutines and __cpp_impl_coroutine for LLVM-17 #1818

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion include/range/v3/detail/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,13 +530,21 @@ namespace ranges
// #endif

#ifndef RANGES_CXX_COROUTINES
#if defined(__cpp_coroutines) && defined(__has_include)
#if (defined(__cpp_coroutines) || defined(__cpp_impl_coroutine)) && defined(__has_include)
#if __has_include(<coroutine>)
#if defined(__cpp_coroutines)
#define RANGES_CXX_COROUTINES __cpp_coroutines
#elif defined(__cpp_impl_coroutine)
#define RANGES_CXX_COROUTINES __cpp_impl_coroutine
#endif
#define RANGES_COROUTINES_HEADER <coroutine>
#define RANGES_COROUTINES_NS std
#elif __has_include(<experimental/coroutine>)
#if defined(__cpp_coroutines)
#define RANGES_CXX_COROUTINES __cpp_coroutines
#elif defined(__cpp_impl_coroutine)
#define RANGES_CXX_COROUTINES __cpp_impl_coroutine
#endif
#define RANGES_COROUTINES_HEADER <experimental/coroutine>
#define RANGES_COROUTINES_NS std::experimental
#endif
Expand Down