diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-10 21:17:06 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-10 21:17:06 -0400 |
commit | 6770411543d9ca44dc632cd4486635f8213b3a1b (patch) | |
tree | 8218771066b292f8546945b3d130d874c1643181 /base/statistics.hh | |
parent | dfd15ec34a4953960872e499e55989a2e25fe147 (diff) | |
download | gem5-6770411543d9ca44dc632cd4486635f8213b3a1b.tar.xz |
fix includes
base/statistics.hh:
need to use explicit path for #includes
--HG--
extra : convert_revision : da51315ee283746636957f5f506d7715ed52764d
Diffstat (limited to 'base/statistics.hh')
-rw-r--r-- | base/statistics.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/base/statistics.hh b/base/statistics.hh index 9296f2aaa..0af298dbf 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -53,9 +53,10 @@ #include <assert.h> -#include "host.hh" -#include "refcnt.hh" -#include "str.hh" +#include "base/refcnt.hh" +#include "base/str.hh" + +#include "sim/host.hh" #ifndef NAN float __nan(); |