diff options
author | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:51 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:51 -0700 |
commit | 709d859530325f28b904001f5a55dbdec2bad199 (patch) | |
tree | 986591a80f7c54fcf19d764248128624b546bad7 /src/mem/bus.hh | |
parent | eef3a2e142443d94b75de333ff3ccb69644a9831 (diff) | |
download | gem5-709d859530325f28b904001f5a55dbdec2bad199.tar.xz |
includes: use base/types.hh not inttypes.h or stdint.h
Diffstat (limited to 'src/mem/bus.hh')
-rw-r--r-- | src/mem/bus.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/bus.hh b/src/mem/bus.hh index 74901d626..a55e37e59 100644 --- a/src/mem/bus.hh +++ b/src/mem/bus.hh @@ -40,11 +40,11 @@ #include <string> #include <set> #include <list> -#include <inttypes.h> #include "base/range.hh" #include "base/hashmap.hh" #include "base/range_map.hh" +#include "base/types.hh" #include "mem/mem_object.hh" #include "mem/packet.hh" #include "mem/port.hh" |