diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-04 11:16:30 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2004-02-04 11:16:30 -0800 |
commit | 98948b2e572d10faf1ac91f977837cf2e8a903c3 (patch) | |
tree | 35f13103c6dc13ca41e41d753e1bf570c3a672f9 /base | |
parent | 368e6e3e570430b207b0194290242a2f98e565ca (diff) | |
download | gem5-98948b2e572d10faf1ac91f977837cf2e8a903c3.tar.xz |
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
Diffstat (limited to 'base')
-rw-r--r-- | base/cprintf_formats.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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__ |