Skip to content

Commit

Permalink
Fix override to calm down code checker
Browse files Browse the repository at this point in the history
  • Loading branch information
shahor02 committed Oct 29, 2023
1 parent ba9f415 commit cace057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GPU/GPUTracking/Global/GPUChainITS.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace o2::its
class GPUFrameworkExternalAllocator : public o2::its::ExternalAllocator
{
public:
void* allocate(size_t size)
void* allocate(size_t size) override
{
return mFWReco->AllocateUnmanagedMemory(size, GPUMemoryResource::MEMORY_GPU);
}
Expand Down Expand Up @@ -98,4 +98,4 @@ int GPUChainITS::PrepareEvent() { return 0; }

int GPUChainITS::Finalize() { return 0; }

int GPUChainITS::RunChain() { return 0; }
int GPUChainITS::RunChain() { return 0; }

0 comments on commit cace057

Please sign in to comment.