aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Graph.hpp
diff options
context:
space:
mode:
authorsurmeh01 <surabhi.mehta@arm.com>2018-05-18 16:31:43 +0100
committertelsoa01 <telmo.soares@arm.com>2018-05-23 13:09:07 +0100
commit3537c2ca7ebf31c1673b9ec2bb0c17b0406bbae0 (patch)
tree5950603ad78ec3fe56fb31ddc7f4d52a19f5bc60 /src/armnn/Graph.hpp
parentbceff2fb3fc68bb0aa88b886900c34b77340c826 (diff)
downloadarmnn-3537c2ca7ebf31c1673b9ec2bb0c17b0406bbae0.tar.gz
Release 18.05
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)...)
{
}