Skip to content

Commit d4afff4

Browse files
committed
GPU: Fix codechecker: Empty destructor should be default
1 parent 93bb53c commit d4afff4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/Base/cuda/GPUReconstructionCUDA.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ GPUReconstructionCUDA::GPUReconstructionCUDA(const GPUSettingsDeviceBackend& cfg
8282
mRtcBinExtension = ".o";
8383
#endif
8484
}
85-
GPUReconstructionCUDA::~GPUReconstructionCUDA() {}
85+
GPUReconstructionCUDA::~GPUReconstructionCUDA() = default;
8686

8787
GPUReconstruction* GPUReconstruction_Create_CUDA(const GPUSettingsDeviceBackend& cfg) { return new GPUReconstructionCUDA(cfg); }
8888

0 commit comments

Comments
 (0)