From 830ce66a4cccc84aeacbc13f81a858faa49fa31d Mon Sep 17 00:00:00 2001 From: vhinger Date: Mon, 3 Feb 2025 18:52:39 +0100 Subject: [PATCH] Remove redundant default constructor and destructor of HDF5File reader class --- slsDetectorCalibration/dataStructures/HDF5File.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slsDetectorCalibration/dataStructures/HDF5File.h b/slsDetectorCalibration/dataStructures/HDF5File.h index 4a3865923..eab1ae778 100644 --- a/slsDetectorCalibration/dataStructures/HDF5File.h +++ b/slsDetectorCalibration/dataStructures/HDF5File.h @@ -44,12 +44,12 @@ public: /** * Constructor */ - HDF5File () = default; + //HDF5File () = default; //No need to declare if it is default /** * Destructor */ - ~HDF5File () = default; + //~HDF5File () = default; //Since the destructor is default (and copy and move are default too) std::vector GetDatasetDimensions ();