Skip to content
Snippets Groups Projects
Commit 610f8b68 authored by Sreejith Pulloor Kuttanikkad's avatar Sreejith Pulloor Kuttanikkad
Browse files

missing semicolons. fixed.

[[Imported from SVN: r2672]]
parent c9c101c8
No related branches found
No related tags found
No related merge requests found
......@@ -143,10 +143,10 @@ namespace Dune {
bool continuous() const { return asImp().continuous(); }
//! Return the corresponding Grid (const version)
const GridType& grid() const { return asImp().grid() }
const GridType& grid() const { return asImp().grid(); }
//! Return the corresponding Grid (const version)
GridType& grid() { return asImp().grid() }
GridType& grid() { return asImp().grid(); }
//! Return number of degrees of freedom for specified grid
//! which can also be the leaflevel and furthermore
......
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