Skip to content
Snippets Groups Projects
Commit ff2db99e authored by Christian Engwer's avatar Christian Engwer
Browse files

fix resize method for dynamic vector

[[Imported from SVN: r6199]]
parent 2eb6a20c
Branches
Tags
No related merge requests found
......@@ -71,6 +71,7 @@ namespace Dune
//==== resize related methods
void resize (size_type r, size_type c, value_type v = value_type() )
{
_data.resize(0);
_data.resize(r, row_type(c, v) );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment