diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-10 09:44:49 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-10 09:44:49 -0400 |
commit | 1092515e6551b3967226f0ff21b2a74236330932 (patch) | |
tree | 3f2a6d26ccf1cea0c76acfc2b860c02a1e25ed77 /base/circlebuf.cc | |
parent | 62c4d826000ab6ee5c7a890cb8d996491a7d3bcc (diff) | |
download | gem5-1092515e6551b3967226f0ff21b2a74236330932.tar.xz |
Rename intmath.h to intmath.hh
clean up the formatting
make things use templates since this is C++ now.
base/circlebuf.cc:
base/intmath.cc:
base/intmath.hh:
base/range.hh:
base/remote_gdb.cc:
base/statistics.cc:
base/str.cc:
intmath.h -> intmath.hh
base/intmath.hh:
Make this more like C++ by templatizing these functions
--HG--
rename : base/intmath.h => base/intmath.hh
extra : convert_revision : 8f9b14de9db751b1bd78588c51613d77afd96989
Diffstat (limited to 'base/circlebuf.cc')
-rw-r--r-- | base/circlebuf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/circlebuf.cc b/base/circlebuf.cc index 482c97f84..311de60b7 100644 --- a/base/circlebuf.cc +++ b/base/circlebuf.cc @@ -33,9 +33,9 @@ #include <string.h> #include <unistd.h> -#include "cprintf.hh" #include "circlebuf.hh" -#include "intmath.h" +#include "cprintf.hh" +#include "intmath.hh" using namespace std; |