Merge pull request #3028 from sloriot/Argt-missing_const

Add missing const
This commit is contained in:
Laurent Rineau 2018-04-24 17:33:30 +02:00
commit abea1b9cb6
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public:
return !equals(p); return !equals(p);
} }
bool operator == (const Self& p) bool operator == (const Self& p) const
{ {
return equals(p); return equals(p);
} }