summaryrefslogtreecommitdiffstats
path: root/src/server/events/Get.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Get.cpp')
-rw-r--r--src/server/events/Get.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/server/events/Get.cpp b/src/server/events/Get.cpp
index 67b68de9..f16654f7 100644
--- a/src/server/events/Get.cpp
+++ b/src/server/events/Get.cpp
@@ -111,9 +111,8 @@ send_graph(Interface* client, const GraphImpl* graph)
Resource::Graph::EXTERNAL);
// Send blocks
- for (GraphImpl::Blocks::const_iterator j = graph->blocks().begin();
- j != graph->blocks().end(); ++j) {
- send_block(client, &*j);
+ for (const auto& b : graph->blocks()) {
+ send_block(client, &b);
}
// Send ports
@@ -122,9 +121,8 @@ send_graph(Interface* client, const GraphImpl* graph)
}
// Send arcs
- for (GraphImpl::Arcs::const_iterator j = graph->arcs().begin();
- j != graph->arcs().end(); ++j) {
- client->connect(j->second->tail_path(), j->second->head_path());
+ for (const auto& a : graph->arcs()) {
+ client->connect(a.second->tail_path(), a.second->head_path());
}
}