Skip to content
Snippets Groups Projects
Commit 288f4893 authored by Tom Fischer's avatar Tom Fischer
Browse files

[ML] md Shorter notation.

parent ee0b5c67
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ private:
if (name.compare(other.name) == 0) {
return mesh_item_type < other.mesh_item_type;
}
return name.compare(other.name) < 0 ? true : false;
return name.compare(other.name) < 0;
}
};
......
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