Skip to content

Commit efda2cb

Browse files
committed
GPU: Fix compiler warning
1 parent 5901752 commit efda2cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GPU/GPUTracking/Global/GPUChainTrackingClusterizer.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -936,10 +936,10 @@ int GPUChainTracking::RunTPCClusterizer(bool synchronizeOutput)
936936
}
937937
}
938938

939-
if (mWaitForFinalInputs && iSliceBase >= 21 && iSliceBase < 21 + GetProcessingSettings().nTPCClustererLanes) {
939+
if (mWaitForFinalInputs && iSliceBase >= 21 && (int)iSliceBase < 21 + GetProcessingSettings().nTPCClustererLanes) {
940940
notifyForeignChainFinished();
941941
}
942-
if (mWaitForFinalInputs && iSliceBase >= 30 && iSliceBase < 30 + GetProcessingSettings().nTPCClustererLanes) {
942+
if (mWaitForFinalInputs && iSliceBase >= 30 && (int)iSliceBase < 30 + GetProcessingSettings().nTPCClustererLanes) {
943943
mWaitForFinalInputs();
944944
synchronizeCalibUpdate = DoQueuedUpdates(0, false);
945945
}

0 commit comments

Comments
 (0)