Fixup 71f9ee6ae7
This commit is contained in:
parent
44db56d767
commit
30977f588a
1 changed files with 2 additions and 2 deletions
|
@ -288,7 +288,7 @@ locator::locator(
|
|||
{
|
||||
}
|
||||
|
||||
bool locator::locator::operator==(const locator& a) const
|
||||
bool locator::operator==(const locator& a) const
|
||||
{
|
||||
if(a.type_ != type_) {
|
||||
return false;
|
||||
|
@ -302,7 +302,7 @@ bool locator::locator::operator==(const locator& a) const
|
|||
return false;
|
||||
}
|
||||
|
||||
bool locator::locator::operator<(const locator& a) const
|
||||
bool locator::operator<(const locator& a) const
|
||||
{
|
||||
if(type_ != a.type_) {
|
||||
return type_ < a.type_;
|
||||
|
|
Loading…
Add table
Reference in a new issue