Skip to content

Commit 845571c

Browse files
committed
fixup! DPL Analysis: return span directly if the CCDB column is declared as a span
1 parent 1bfc042 commit 845571c

File tree

1 file changed

+2
-2
lines changed
  • Framework/Core/include/Framework

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2470,7 +2470,7 @@ consteval static std::string_view namespace_prefix()
24702470
_Name_& operator=(_Name_ const& other) = default; \
24712471
\
24722472
decltype(auto) _Getter_() const \
2473-
requires(!std::same_as < _ConcreteType_, std::span<std::byte>) \
2473+
requires(!std::same_as<_ConcreteType_, std::span<std::byte>>) \
24742474
{ \
24752475
static std::byte* payload = nullptr; \
24762476
static _ConcreteType_* deserialised = nullptr; \
@@ -2486,7 +2486,7 @@ consteval static std::string_view namespace_prefix()
24862486
} \
24872487
\
24882488
decltype(auto) _Getter_() const \
2489-
requires(std::same_as<_Concrete_Type_, std::span<std::byte>>) \
2489+
requires(std::same_as<_ConcreteType_, std::span<std::byte>>) \
24902490
{ \
24912491
return *mColumnIterator; \
24922492
} \

0 commit comments

Comments
 (0)