Skip to content

Commit 22bec1f

Browse files
authored
Update GPUChainITS.cxx
1 parent e32d71e commit 22bec1f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

GPU/GPUTracking/Global/GPUChainITS.cxx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ class GPUFrameworkExternalAllocator final : public o2::its::ExternalAllocator
3030
return mFWReco->AllocateDirectMemory(size, mType);
3131
}
3232
void deallocate(char* ptr, size_t size) final {} // this is a simple no-op
33-
void pushTagOnStack(uint64_t tag)
33+
void pushTagOnStack(uint64_t tag) final
3434
{
3535
mFWReco->PushNonPersistentMemory(tag);
3636
}
37-
void popTagOffStack(uint64_t tag)
37+
void popTagOffStack(uint64_t tag) final
3838
{
3939
mFWReco->PopNonPersistentMemory(GPUDataTypes::RecoStep::ITSTracking, tag);
4040
}
@@ -45,8 +45,6 @@ class GPUFrameworkExternalAllocator final : public o2::its::ExternalAllocator
4545
};
4646
} // namespace o2::its
4747

48-
GPUChainITS::~GPUChainITS() {}
49-
5048
GPUChainITS::GPUChainITS(GPUReconstruction* rec) : GPUChain(rec) {}
5149

5250
int32_t GPUChainITS::Init() { return 0; }

0 commit comments

Comments
 (0)