From 1114b53ca594630252812daac1f2bc88a9fb4327 Mon Sep 17 00:00:00 2001 From: David Rohr Date: Thu, 7 Nov 2024 22:53:19 +0100 Subject: [PATCH] TPC: Fix invalid template keyword with argument list (clang19 complains, remove since not really needed) --- GPU/TPCFastTransformation/Spline1DSpec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/TPCFastTransformation/Spline1DSpec.h b/GPU/TPCFastTransformation/Spline1DSpec.h index e37ee67581c63..f8af1980d81ae 100644 --- a/GPU/TPCFastTransformation/Spline1DSpec.h +++ b/GPU/TPCFastTransformation/Spline1DSpec.h @@ -448,7 +448,7 @@ class Spline1DSpec GPUgeneric() const T Sr[/*mYdim*/], GPUgeneric() const T Dr[/*mYdim*/], DataT u, GPUgeneric() T S[/*mYdim*/]) const { - TBase::template interpolateU(YdimT, knotL, Sl, Dl, Sr, Dr, u, S); + TBase::interpolateU(YdimT, knotL, Sl, Dl, Sr, Dr, u, S); } using TBase::getNumberOfKnots;