Formatting fixes.
authorGabe Black <gblack@eecs.umich.edu>
Mon, 19 Mar 2007 14:22:28 +0000 (14:22 +0000)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 19 Mar 2007 14:22:28 +0000 (14:22 +0000)
--HG--
extra : convert_revision : 276d0667daa4626288b56af3b4b17a3f9052e81a

src/base/bitfield.hh

index 8731608efe582b6b860020ca62cace9d37cf0c5f..da7a21b8f067e96c11cd1e4579b9c5f0170605d6 100644 (file)
@@ -187,7 +187,7 @@ namespace BitfieldBackend
     class _BitfieldWO : public Base
     {
       public:
-        const Type operator = (const Type & _data)
+        const Type operator=(const Type & _data)
         {
             *((Base *)this) = _data;
             return _data;
@@ -206,7 +206,7 @@ namespace BitfieldBackend
         }
 
         const Data
-        operator = (const Data & _data)
+        operator=(const Data & _data)
         {
             this->setBits(first, last, _data);
             return _data;
@@ -229,19 +229,19 @@ namespace BitfieldBackend
         }
 
         const Type
-        operator = (const Type & _data)
+        operator=(const Type & _data)
         {
             Base::__data = _data;
         }
 
         bool
-        operator < (const Base & base)
+        operator<(const Base & base)
         {
             return Base::__data < base.__data;
         }
 
         bool
-        operator == (const Base & base)
+        operator==(const Base & base)
         {
             return Base::__data == base.__data;
         }