Fix coding style violations.

This commit is contained in:
czeidler
2012-10-07 10:48:17 +13:00
parent 642eeda1c1
commit 5b9400a2b6
+4 -4
View File
@@ -140,22 +140,22 @@ public:
bool operator==(const BReference<Type>& other) const
{
return (fObject == other.fObject);
return fObject == other.fObject;
}
bool operator==(const Type* other) const
{
return (fObject == other);
return fObject == other;
}
bool operator!=(const BReference<Type>& other) const
{
return (fObject != other.fObject);
return fObject != other.fObject;
}
bool operator!=(const Type* other) const
{
return (fObject != other);
return fObject != other;
}
private: