From 98948b2e572d10faf1ac91f977837cf2e8a903c3 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Wed, 4 Feb 2004 11:16:30 -0800 Subject: More reformatting of reference parameter declarations. The last change only caught the ones with types that started with capitals. This pass catches the rest (mostly STL and uint*_t types). base/cprintf_formats.hh: cpu/simple_cpu/simple_cpu.cc: sim/serialize.cc: sim/serialize.hh: Change "foo_t& foo" to "foo_t &foo". --HG-- extra : convert_revision : fc7f7425db2aef33e490f952b5ce74c8c36d0d41 --- sim/serialize.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sim/serialize.cc') diff --git a/sim/serialize.cc b/sim/serialize.cc index 180cc38a0..ba5a99afd 100644 --- a/sim/serialize.cc +++ b/sim/serialize.cc @@ -187,7 +187,7 @@ class Globals : public Serializable { public: string name() const; - void serialize(ostream& os); + void serialize(ostream &os); void unserialize(Checkpoint *cp); }; @@ -201,7 +201,7 @@ Globals::name() const } void -Globals::serialize(ostream& os) +Globals::serialize(ostream &os) { nameOut(os); SERIALIZE_SCALAR(curTick); -- cgit v1.2.3