Skip to content
Snippets Groups Projects
Commit 5e2ad29f authored by guj's avatar guj
Browse files

the order GlobalDimension/LocalDimension/Offset needs to be consistant

in Variable.h and VariableBase.h
parent bc341401
No related branches found
No related tags found
1 merge request!101Hdf5
...@@ -52,8 +52,8 @@ public: ...@@ -52,8 +52,8 @@ public:
const bool m_DebugMode = false; const bool m_DebugMode = false;
VariableBase(const std::string &name, const std::string type, VariableBase(const std::string &name, const std::string type,
const std::size_t elementSize, const Dims localDimensions, const std::size_t elementSize, const Dims globalDimensions,
const Dims globalDimensions, const Dims offsets, const Dims localDimensions, const Dims offsets,
const bool debugMode) const bool debugMode)
: m_Name{name}, m_Type{type}, m_ElementSize{elementSize}, : m_Name{name}, m_Type{type}, m_ElementSize{elementSize},
m_LocalDimensions{localDimensions}, m_GlobalDimensions{globalDimensions}, m_LocalDimensions{localDimensions}, m_GlobalDimensions{globalDimensions},
......
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