Turn around attribute order to match HDF5 writer

This commit is contained in:
2020-05-26 14:56:17 +02:00
parent 6abdd0fb04
commit c0668a97ba
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -12,10 +12,10 @@
using namespace std;
BufferBinaryWriter::BufferBinaryWriter(
const string& device_name,
const string& root_folder) :
device_name_(device_name),
const string& root_folder,
const string& device_name):
root_folder_(root_folder),
device_name_(device_name),
latest_filename_(root_folder + "/" + device_name + "/LATEST"),
current_output_filename_(""),
output_file_fd_(-1)