Skip to content
Snippets Groups Projects
Commit 82bfcf9b authored by Timo Koch's avatar Timo Koch
Browse files

[cleanup] Fix wrong whitespace

parent a5649061
No related branches found
No related tags found
1 merge request!63Feature/implement entity type
......@@ -281,14 +281,14 @@ class FoamGridEntity<0, 2, GridImp> :
}
/*! Return number of subentities with codimension cc.
*
*
* That number is (dim over (dim-codim)) times 2^codim
*/
unsigned int subEntities (unsigned int codim) const
{
assert(0<=codim && codim<=2);
unsigned int subEntities (unsigned int codim) const
{
assert(0<=codim && codim<=2);
return (codim==0) ? 1 : 3;
}
}
/** \brief Return index of sub entity with codim = cc and local number i
*/
......
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