Skip to content

Commit

Permalink
fix concept syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Nov 12, 2024
1 parent d43378d commit fa07097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ template <typename C>
static constexpr bool is_persistent_v = is_persistent_column<C>;

template <typename C>
concept is_index_column = requires { not_void<typename C::binding_t>; };
concept is_index_column = requires { typename C::binding_t{nullptr}; };

template <typename C>
using is_external_index_t = typename std::conditional_t<is_index_column<C>, std::true_type, std::false_type>;
Expand Down

0 comments on commit fa07097

Please sign in to comment.