Remove unused variable

This commit is contained in:
2020-05-15 12:02:05 +02:00
parent fa9586173b
commit e6c3e65200
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -21,7 +21,6 @@ struct ImageMetadata
class WriterH5Writer {
const size_t n_frames_;
const size_t n_modules_;
size_t current_write_index_;
H5::H5File file_;
-1
View File
@@ -14,7 +14,6 @@ WriterH5Writer::WriterH5Writer(
const size_t n_frames,
const size_t n_modules) :
n_frames_(n_frames),
n_modules_(n_modules),
current_write_index_(0)
{
file_ = H5::H5File(output_file, H5F_ACC_TRUNC);