From: Gabe Black Date: Mon, 19 Mar 2007 14:22:28 +0000 (+0000) Subject: Formatting fixes. X-Git-Tag: m5_2.0_beta3~88 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=898652fe045ec6e4f76db8875478f29db58a0f14;p=gem5.git Formatting fixes. --HG-- extra : convert_revision : 276d0667daa4626288b56af3b4b17a3f9052e81a --- diff --git a/src/base/bitfield.hh b/src/base/bitfield.hh index 8731608ef..da7a21b8f 100644 --- a/src/base/bitfield.hh +++ b/src/base/bitfield.hh @@ -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; }