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

added docu for operator <

[[Imported from SVN: r4941]]
parent 51419277
Branches
Tags
No related merge requests found
......@@ -145,7 +145,8 @@ namespace Dune {
return ! ((*this)==other);
}
bool operator<(const GeometryType& other) const {
/** \brief lesser operation for use with maps */
bool operator < (const GeometryType& other) const {
if (dim() != other.dim())
return dim() < other.dim();
else if (dim()==0 || dim()==1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment