We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a77d9 commit 1bfc042Copy full SHA for 1bfc042
1 file changed
Framework/Core/include/Framework/ASoA.h
@@ -2470,6 +2470,7 @@ consteval static std::string_view namespace_prefix()
2470
_Name_& operator=(_Name_ const& other) = default; \
2471
\
2472
decltype(auto) _Getter_() const \
2473
+ requires(!std::same_as < _ConcreteType_, std::span<std::byte>) \
2474
{ \
2475
static std::byte* payload = nullptr; \
2476
static _ConcreteType_* deserialised = nullptr; \
@@ -2484,6 +2485,12 @@ consteval static std::string_view namespace_prefix()
2484
2485
return *deserialised; \
2486
} \
2487
2488
+ decltype(auto) _Getter_() const \
2489
+ requires(std::same_as<_Concrete_Type_, std::span<std::byte>>) \
2490
+ { \
2491
+ return *mColumnIterator; \
2492
+ } \
2493
+ \
2494
decltype(auto) \
2495
get() const \
2496
0 commit comments