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

the size is static!

[[Imported from SVN: r6179]]
parent 143c6e42
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ namespace Dune {
using Base::operator=;
// make this thing a vector
size_type vec_size() const { return _data.size(); }
size_type vec_size() const { return SIZE; }
K & vec_access(size_type i) { return _data[i]; }
const K & vec_access(size_type i) const { return _data[i]; }
private:
......
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