Remove redundant default constructor and destructor of HDF5File reader class

This commit is contained in:
hinger_v 2025-02-03 18:52:39 +01:00
parent 69e1702493
commit 830ce66a4c

View File

@ -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 ();