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.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/armnn/Graph.hpp b/src/armnn/Graph.hpp
index 34aefbf085..06b6fd32ae 100644
--- a/src/armnn/Graph.hpp
+++ b/src/armnn/Graph.hpp
@@ -4,7 +4,7 @@
//
#pragma once
-#include "Layers.hpp"
+#include "LayersFwd.hpp"
#include <armnn/Types.hpp>
#include <armnn/TensorFwd.hpp>
@@ -254,8 +254,8 @@ public:
}
}
template <typename... Args>
- LayerInGraph(Graph& graph, Iterator insertBefore, Args&&... args)
- // Ignore insertBefore. Always add to the back of the inputs.
+ LayerInGraph(Graph& graph, Iterator, Args&&... args)
+ // Ignore Iterator argument. Always add to the back of the inputs.
: LayerInGraph(graph, std::forward<Args>(args)...)
{
}