Skip to content
Snippets Groups Projects
Commit f933307d authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

fix MSVC error

parent 8427163e
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ LocalToGlobalIndexMap::LocalToGlobalIndexMap(
NumLib::MeshComponentMap&& mesh_component_map)
: _mesh_subsets(std::move(mesh_subsets)),
_mesh_component_map(std::move(mesh_component_map)),
_variable_component_offsets{0, 1} // Single variable only.
_variable_component_offsets(to_cumulative(std::vector<unsigned>(1,1))) // Single variable only.
{
// There is only on mesh_subsets in the vector _mesh_subsets.
assert(_mesh_subsets.size() == 1);
......
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