We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d43378d commit fa07097Copy full SHA for fa07097
Framework/Core/include/Framework/ASoA.h
@@ -152,7 +152,7 @@ template <typename C>
152
static constexpr bool is_persistent_v = is_persistent_column<C>;
153
154
template <typename C>
155
-concept is_index_column = requires { not_void<typename C::binding_t>; };
+concept is_index_column = requires { typename C::binding_t{nullptr}; };
156
157
158
using is_external_index_t = typename std::conditional_t<is_index_column<C>, std::true_type, std::false_type>;
0 commit comments