Skip to content

Commit f93615f

Browse files
author
Francesco Mazzaschi
committed
Fix compilation for Mac
1 parent d9c44f1 commit f93615f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/TableProducer/Nuspex/threebodyKFTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ struct threebodyKFTask {
9999
template <typename MCTrack3B>
100100
int checkH3LTruth(MCTrack3B const& trackPr, MCTrack3B const& trackPi, MCTrack3B const& trackDe, bool& isMuonReco)
101101
{
102-
if (!trackPi.template has_mcParticle() || !trackPr.template has_mcParticle() || !trackDe.template has_mcParticle()) {
102+
if (!trackPi.has_mcParticle() || !trackPr.has_mcParticle() || !trackDe.has_mcParticle()) {
103103
return -1;
104104
}
105105
auto mcParticlePr = trackPr.template mcParticle_as<aod::McParticles>();

0 commit comments

Comments
 (0)