diff --git a/PWGDQ/Core/MuonMatchingMlResponse.h b/PWGDQ/Core/MuonMatchingMlResponse.h index 6fd756f5819..90e0da301e4 100644 --- a/PWGDQ/Core/MuonMatchingMlResponse.h +++ b/PWGDQ/Core/MuonMatchingMlResponse.h @@ -50,7 +50,7 @@ // by calling the corresponding GETTER function #define CHECK_AND_FILL_FEATURE_OPTIONAL_NO_EXPR(FEATURE, OBJECT, GETTER) \ case static_cast(InputFeaturesMFTMuonMatch::FEATURE): { \ - if constexpr (requires(decltype(OBJECT) t) { { t.GETTER() } -> std::convertible_to; }) { \ + if constexpr (requires(decltype(OBJECT) t) { { t.GETTER() } -> std::convertible_to; }) { \ inputFeature = (OBJECT.GETTER()); \ } else { \ inputFeature = 0; \ @@ -65,7 +65,7 @@ // by calling the corresponding GETTER expression #define CHECK_AND_FILL_FEATURE_OPTIONAL_WITH_EXPR(FEATURE, OBJECT, FUNC, GETTER) \ case static_cast(InputFeaturesMFTMuonMatch::FEATURE): { \ - if constexpr (requires(decltype(OBJECT) t) { { t.FUNC() } -> std::convertible_to; }) { \ + if constexpr (requires(decltype(OBJECT) t) { { t.FUNC() } -> std::convertible_to; }) { \ inputFeature = (GETTER); \ } else { \ inputFeature = 0; \