Skip to content
Snippets Groups Projects
Commit 97734f89 authored by Podhorszki, Norbert's avatar Podhorszki, Norbert
Browse files

clang-format

parent 42555cc5
No related branches found
No related tags found
1 merge request!102Variables3
......@@ -254,8 +254,7 @@ void HDF5Writer::UseHDFWrite(Variable<T> &variable, const T *values,
variable.m_AppValues = values;
m_WrittenVariables.insert(variable.m_Name);
int dimSize = std::max(variable.m_Shape.size(),
variable.m_Count.size());
int dimSize = std::max(variable.m_Shape.size(), variable.m_Count.size());
std::vector<hsize_t> dimsf, count, offset;
......@@ -287,7 +286,6 @@ void HDF5Writer::UseHDFWrite(Variable<T> &variable, const T *values,
count.push_back(variable.m_Shape[i]);
offset.push_back(0);
}
}
hid_t fileSpace = H5Screate_simple(dimSize, dimsf.data(), NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment