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 --- base/cprintf_formats.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/cprintf_formats.hh') diff --git a/base/cprintf_formats.hh b/base/cprintf_formats.hh index c3e01c935..d8a8a552b 100644 --- a/base/cprintf_formats.hh +++ b/base/cprintf_formats.hh @@ -341,7 +341,7 @@ format_string(std::ostream &out, const T &data, Format &fmt) { _format_string(out, data, fmt); } inline void -format_string(std::ostream &out, const std::stringstream& data, Format &fmt) +format_string(std::ostream &out, const std::stringstream &data, Format &fmt) { _format_string(out, data.str(), fmt); } #endif // __CPRINTF_FORMATS_HH__ -- cgit v1.2.3