Skip to content
Snippets Groups Projects
Commit c67482af authored by Ruonan Wang's avatar Ruonan Wang
Browse files

removed commented out code for testing

parent 8a0e16c1
No related branches found
No related tags found
1 merge request!105Fixed a compiling problem for Mac which is caused by conflicts between size_t and uint64_t
......@@ -24,8 +24,8 @@ VariableCompound &ADIOS::DefineVariableCompound(const std::string &name,
CheckVariableInput(name, dimensions);
const unsigned int size = m_Compound.size();
m_Compound.emplace(size, VariableCompound(name, sizeof(T), dimensions,
globalDimensions, globalOffsets, false,
m_DebugMode));
globalDimensions, globalOffsets,
false, m_DebugMode));
m_Variables.emplace(name, std::make_pair(GetType<T>(), size));
return m_Compound.at(size);
}
......
......@@ -155,8 +155,6 @@ public:
"Variable.SetSelection() for local or joined array '" + m_Name +
"' should pass an empty 'start' argument\n");
}
// ConvertUint64VectorToSizetVector(count, m_Count);
// ConvertUint64VectorToSizetVector(start, m_Start);
m_Count = count;
m_Start = start;
}
......
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