Skip to content

Commit fa1c4f9

Browse files
committed
DPL Analysis: Fix DECLARE_SOA_CCDB_COLUMN_FULL's default construcor which was firing cppcoreguidelines-pro-type-member-init in O2Physics code when used
1 parent 4679fed commit fa1c4f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Framework/Core/include/Framework

Framework/Core/include/Framework/ASoA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2384,7 +2384,7 @@ consteval static std::string_view namespace_prefix()
23842384
{ \
23852385
} \
23862386
\
2387-
_Name_() = default; \
2387+
_Name_() : o2::soa::Column<int64_t[3], _Name_>() {} \
23882388
_Name_(_Name_ const& other) = default; \
23892389
_Name_& operator=(_Name_ const& other) = default; \
23902390
\

0 commit comments

Comments
 (0)