aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Graph.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Graph.hpp')
-rw-r--r--src/armnn/Graph.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/armnn/Graph.hpp b/src/armnn/Graph.hpp
index d49b5e513f..d71149d069 100644
--- a/src/armnn/Graph.hpp
+++ b/src/armnn/Graph.hpp
@@ -48,7 +48,9 @@ public:
}
using LayerList = std::list<Layer*>;
- using Iterator = LayerList::const_iterator; // Const so pointers in the list can't be modified externally.
+
+ // Const so pointers in the list can't be modified externally.
+ using Iterator = LayerList::const_iterator;
using IteratorDifference = Iterator::difference_type;
using ConstIterator = TransformIterator<decltype(&PtrCast<const Layer>), Iterator>;