diff options
Diffstat (limited to 'src/mem/bus.hh')
-rw-r--r-- | src/mem/bus.hh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mem/bus.hh b/src/mem/bus.hh index ac35581b1..541e2f363 100644 --- a/src/mem/bus.hh +++ b/src/mem/bus.hh @@ -54,8 +54,7 @@ #include <list> #include <set> -#include "base/range.hh" -#include "base/range_map.hh" +#include "base/addr_range_map.hh" #include "base/types.hh" #include "mem/mem_object.hh" #include "params/BaseBus.hh" @@ -233,9 +232,9 @@ class BaseBus : public MemObject /** the width of the bus in bytes */ int width; - typedef range_map<Addr, PortID>::iterator PortMapIter; - typedef range_map<Addr, PortID>::const_iterator PortMapConstIter; - range_map<Addr, PortID> portMap; + typedef AddrRangeMap<PortID>::iterator PortMapIter; + typedef AddrRangeMap<PortID>::const_iterator PortMapConstIter; + AddrRangeMap<PortID> portMap; AddrRangeList defaultRange; |