[haiku-commits] haiku: hrev44681 - headers/private/shared

  • From: clemens.zeidler@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 6 Oct 2012 23:49:13 +0200 (CEST)

hrev44681 adds 1 changeset to branch 'master'
old head: 642eeda1c18a41686da25ed58236e91fa2044bf2
new head: 5b9400a2b643f5d09b8bb1043683dc155b572552

----------------------------------------------------------------------------

5b9400a: Fix coding style violations.

                                     [ czeidler <haiku@xxxxxxxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev44681
Commit:      5b9400a2b643f5d09b8bb1043683dc155b572552
URL:         http://cgit.haiku-os.org/haiku/commit/?id=5b9400a
Author:      czeidler <haiku@xxxxxxxxxxxxxxxxxx>
Date:        Sat Oct  6 21:48:17 2012 UTC

----------------------------------------------------------------------------

1 file changed, 4 insertions(+), 4 deletions(-)
headers/private/shared/Referenceable.h |    8 ++++----

----------------------------------------------------------------------------

diff --git a/headers/private/shared/Referenceable.h 
b/headers/private/shared/Referenceable.h
index d25aac5..ed9eff8 100644
--- a/headers/private/shared/Referenceable.h
+++ b/headers/private/shared/Referenceable.h
@@ -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:


Other related posts:

  • » [haiku-commits] haiku: hrev44681 - headers/private/shared - clemens . zeidler