mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-19 08:17:13 +02:00
Remove redundant default constructor and destructor of HDF5File reader class
This commit is contained in:
@ -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<hsize_t> GetDatasetDimensions ();
|
||||
|
Reference in New Issue
Block a user