From 94a88d2b21d9ca3f42dc3435695be31b5591230b Mon Sep 17 00:00:00 2001 From: Derek Lamberti Date: Tue, 10 Dec 2019 21:12:59 +0000 Subject: IVGCVSW-4246 Clean build Layers with -Wextra Change-Id: I649cd2304fb0040164763d31a12fc77c6c3bed87 Signed-off-by: Derek Lamberti --- src/armnn/layers/SoftmaxLayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/armnn/layers/SoftmaxLayer.cpp') diff --git a/src/armnn/layers/SoftmaxLayer.cpp b/src/armnn/layers/SoftmaxLayer.cpp index 90891b417a..cb70bbc20d 100644 --- a/src/armnn/layers/SoftmaxLayer.cpp +++ b/src/armnn/layers/SoftmaxLayer.cpp @@ -18,10 +18,10 @@ SoftmaxLayer::SoftmaxLayer(const SoftmaxDescriptor ¶m, const char* name) { } -std::unique_ptr SoftmaxLayer::CreateWorkload(const Graph& graph, const IWorkloadFactory& factory) const +std::unique_ptr SoftmaxLayer::CreateWorkload(const IWorkloadFactory& factory) const { SoftmaxQueueDescriptor descriptor; - return factory.CreateSoftmax(descriptor, PrepInfoAndDesc(descriptor, graph)); + return factory.CreateSoftmax(descriptor, PrepInfoAndDesc(descriptor)); } SoftmaxLayer* SoftmaxLayer::Clone(Graph& graph) const -- cgit v1.2.1