Added "const" keyword to IsEmpty().

This commit is contained in:
giorgiomarcias 2014-10-16 09:42:48 +00:00
parent b363673f0e
commit bc1975ad43
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ void Clear()
C()=Color4b::Gray;
}
bool IsEmpty()
bool IsEmpty() const
{
return vert.empty() && edge.empty() && face.empty();
}