Skip to content

Commit d16c53c

Browse files
ktfdavidrohr
authored andcommitted
Fix deprecation warning about implicit conversion of anonymous enum
1 parent b15719d commit d16c53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ GPUd() void GPUTPCCFCheckPadBaseline::Thread<0>(int nBlocks, int nThreads, int i
7777

7878
#else // CPU CODE
7979

80-
constexpr size_t ElemsInTileRow = TilingLayout<GridSize<2>>::WidthInTiles * TimebinsPerCacheline * PadsPerCacheline;
80+
constexpr size_t ElemsInTileRow = (size_t)TilingLayout<GridSize<2>>::WidthInTiles * TimebinsPerCacheline * PadsPerCacheline;
8181

8282
#ifndef GPUCA_NO_VC
8383
using UShort8 = Vc::fixed_size_simd<unsigned short, PadsPerCacheline>;

0 commit comments

Comments
 (0)