Skip to content

Commit

Permalink
Swap constexpr and inline
Browse files Browse the repository at this point in the history
  • Loading branch information
akukanov committed Oct 10, 2024
1 parent c4a053f commit eb5b844
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,15 @@ function overload resolution:
struct is_execution_policy { /*see below*/ };
template <class T>
constexpr inline bool is_execution_policy_v = oneapi::dpl::is_execution_policy<T>::value;
inline constexpr bool is_execution_policy_v = oneapi::dpl::is_execution_policy<T>::value;
namespace execution {
template <class T>
struct is_execution_policy { /*see below*/ };
template <class T>
constexpr inline bool is_execution_policy_v = oneapi::dpl::execution::is_execution_policy<T>::value;
inline constexpr bool is_execution_policy_v = oneapi::dpl::execution::is_execution_policy<T>::value;
}
}
Expand Down

0 comments on commit eb5b844

Please sign in to comment.