summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system/RubyPort.cc
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2014-10-16 05:49:59 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2014-10-16 05:49:59 -0400
commitedc77fc03cc2f9ef0fb17a34a998b2b957904c93 (patch)
tree3f715c08e8dcf66bac6a939dcac5d8fb8506822d /src/mem/ruby/system/RubyPort.cc
parente6ad39adac7e77e36a294f63da47ad79ca446e93 (diff)
downloadgem5-edc77fc03cc2f9ef0fb17a34a998b2b957904c93.tar.xz
misc: Move AddrRangeList from port.hh to addr_range.hh
The new location seems like a better fit. The iterator typedefs are removed in favour of using C++11 auto.
Diffstat (limited to 'src/mem/ruby/system/RubyPort.cc')
-rw-r--r--src/mem/ruby/system/RubyPort.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/system/RubyPort.cc b/src/mem/ruby/system/RubyPort.cc
index b839e6646..1374c3566 100644
--- a/src/mem/ruby/system/RubyPort.cc
+++ b/src/mem/ruby/system/RubyPort.cc
@@ -526,8 +526,8 @@ RubyPort::PioSlavePort::getAddrRanges() const
ranges.splice(ranges.begin(),
ruby_port->master_ports[i]->getAddrRanges());
}
- for (AddrRangeConstIter r = ranges.begin(); r != ranges.end(); ++r)
- DPRINTF(RubyPort, "%s\n", r->to_string());
+ for (const auto M5_VAR_USED &r : ranges)
+ DPRINTF(RubyPort, "%s\n", r.to_string());
return ranges;
}