Skip to content

Commit 7c0c733

Browse files
Merge pull request #295 from chillenzer/fix-missing-list-after-template-kw
Fix missing list after template kw
2 parents be3ac39 + bc6944e commit 7c0c733

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

include/mallocMC/creationPolicies/Scatter.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,8 +1293,7 @@ namespace mallocMC
12931293
auto const gid = alpaka::getIdx<alpaka::Grid, alpaka::Threads>(acc).sum();
12941294

12951295
auto const nWorker = alpaka::getWorkDiv<alpaka::Grid, alpaka::Threads>(acc).prod();
1296-
unsigned const temp
1297-
= heapPtr->template getAvailaibleSlotsDeviceFunction(acc, numBytes, gid, nWorker);
1296+
unsigned const temp = heapPtr->getAvailaibleSlotsDeviceFunction(acc, numBytes, gid, nWorker);
12981297
if(temp)
12991298
alpaka::atomicOp<alpaka::AtomicAdd>(acc, slots, temp);
13001299
};

0 commit comments

Comments
 (0)