From 25c0d9dcd51702ab93100ff8a3d26074f93ee455 Mon Sep 17 00:00:00 2001 From: Peter Hristov Date: Tue, 31 Mar 2026 14:57:26 +0200 Subject: [PATCH 1/2] Fix for Xcode 26.4 --- PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h b/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h index 63d9646cdde..fb800e9cf0a 100644 --- a/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h +++ b/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h @@ -101,7 +101,7 @@ class FemtoUniverseSelection /// \param cutContainer Bit-wise container for the systematic variations /// \param counter Position in the bit-wise container for the systematic variations to be modified template - void checkSelectionSetBit(selValDataType observable, T& cutContainer, size_t& counter) + void checkSelectionSetBit(selValDataType observable, T& cutContainer, std::size_t& counter) { /// If the selection is fulfilled the bit at the specified position (counter) within the bit-wise container is set to 1 if (isSelected(observable)) { From 5d2a35d2fb6cc1562bdd6e34e57a8cb8f11db041 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 31 Mar 2026 13:00:15 +0000 Subject: [PATCH 2/2] Please consider the following formatting changes --- PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h b/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h index fb800e9cf0a..5bee5c8940b 100644 --- a/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h +++ b/PWGCF/FemtoUniverse/Core/FemtoUniverseSelection.h @@ -101,7 +101,7 @@ class FemtoUniverseSelection /// \param cutContainer Bit-wise container for the systematic variations /// \param counter Position in the bit-wise container for the systematic variations to be modified template - void checkSelectionSetBit(selValDataType observable, T& cutContainer, std::size_t& counter) + void checkSelectionSetBit(selValDataType observable, T& cutContainer, std::size_t& counter) { /// If the selection is fulfilled the bit at the specified position (counter) within the bit-wise container is set to 1 if (isSelected(observable)) {