Skip to content
Snippets Groups Projects
Commit e2ac16d8 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

when instancing FMatrix<0> then Array of length 1 is created.

[[Imported from SVN: r4225]]
parent 82c6b132
No related branches found
No related tags found
No related merge requests found
......@@ -943,7 +943,7 @@ namespace Dune {
private:
// the data, very simply a built in array with rowwise ordering
row_type p[n];
row_type p[(n > 0) ? n : 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