Skip to content

Commit 14f9c88

Browse files
committed
C++20 does not allow aggregate initialisation if default ctor present
1 parent 7415a26 commit 14f9c88

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Detectors/GlobalTracking/include/GlobalTracking/MatchTPCITS.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ struct InteractionCandidate : public o2::InteractionRecord {
288288
int rofITS; // corresponding ITS ROF entry (in the ROFRecord vectors)
289289
uint32_t flag; // origin, etc.
290290
o2::dataformats::RangeReference<int, int> seedsRef; // references to AB seeds
291-
InteractionCandidate() = default;
292291
InteractionCandidate(const o2::InteractionRecord& ir, float t, float dt, int rof, uint32_t f = 0) : o2::InteractionRecord(ir), tBracket(t - dt, t + dt), rofITS(rof), flag(f) {}
293292
};
294293

Detectors/Vertexing/include/DetectorsVertexing/PVertexerHelpers.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,6 @@ struct InteractionCandidate : public o2::InteractionRecord {
277277
float time = 0;
278278
float amplitude = 0;
279279
uint32_t flag = 0; // origin, etc.
280-
InteractionCandidate() = default;
281280
};
282281

283282
} // namespace vertexing

0 commit comments

Comments
 (0)