summaryrefslogtreecommitdiff
path: root/base/cprintf_formats.hh
diff options
context:
space:
mode:
authorAndrew Schultz <alschult@umich.edu>2004-02-19 16:32:13 -0500
committerAndrew Schultz <alschult@umich.edu>2004-02-19 16:32:13 -0500
commitd4637757f855c14ebecfa7e4bea93c86143e5e45 (patch)
treee9a038d4a7e0a1649068557f243bd3786cf8a277 /base/cprintf_formats.hh
parente3fb3d1ad01aa08ab6631c3f77e6f105d5a736a6 (diff)
downloadgem5-d4637757f855c14ebecfa7e4bea93c86143e5e45.tar.xz
Remote an old hack that is now unnecessary
base/cprintf_formats.hh: Add additional format modifiers --HG-- extra : convert_revision : f9ec0a664eeb96db7dacacd6b7636e3cb47555e7
Diffstat (limited to 'base/cprintf_formats.hh')
-rw-r--r--base/cprintf_formats.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/base/cprintf_formats.hh b/base/cprintf_formats.hh
index d8a8a552b..120dd94b1 100644
--- a/base/cprintf_formats.hh
+++ b/base/cprintf_formats.hh
@@ -279,8 +279,6 @@ template <typename T>
inline void
format_integer(std::ostream &out, const T &data, Format &fmt)
{ _format_integer(out, data, fmt); }
-
-#if 0
inline void
format_integer(std::ostream &out, char data, Format &fmt)
{ _format_integer(out, data, fmt); }
@@ -290,6 +288,7 @@ format_integer(std::ostream &out, unsigned char data, Format &fmt)
inline void
format_integer(std::ostream &out, signed char data, Format &fmt)
{ _format_integer(out, data, fmt); }
+#if 0
inline void
format_integer(std::ostream &out, short data, Format &fmt)
{ _format_integer(out, data, fmt); }