summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-03-19 14:22:28 +0000
committerGabe Black <gblack@eecs.umich.edu>2007-03-19 14:22:28 +0000
commit898652fe045ec6e4f76db8875478f29db58a0f14 (patch)
tree71eaa7d14a154ae13998eafcf4cc1c01fa33cb07
parent43dea39dd46ac8cf7a1bf6a4940f9bbea0e03b85 (diff)
downloadgem5-898652fe045ec6e4f76db8875478f29db58a0f14.tar.xz
Formatting fixes.
--HG-- extra : convert_revision : 276d0667daa4626288b56af3b4b17a3f9052e81a
-rw-r--r--src/base/bitfield.hh10
1 files changed, 5 insertions, 5 deletions
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;
}