Fix coding style violations.
This commit is contained in:
@@ -140,22 +140,22 @@ public:
|
|||||||
|
|
||||||
bool operator==(const BReference<Type>& other) const
|
bool operator==(const BReference<Type>& other) const
|
||||||
{
|
{
|
||||||
return (fObject == other.fObject);
|
return fObject == other.fObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator==(const Type* other) const
|
bool operator==(const Type* other) const
|
||||||
{
|
{
|
||||||
return (fObject == other);
|
return fObject == other;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator!=(const BReference<Type>& other) const
|
bool operator!=(const BReference<Type>& other) const
|
||||||
{
|
{
|
||||||
return (fObject != other.fObject);
|
return fObject != other.fObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator!=(const Type* other) const
|
bool operator!=(const Type* other) const
|
||||||
{
|
{
|
||||||
return (fObject != other);
|
return fObject != other;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user