From 0b679f03ead8848edc225d44afbbcc54d112e433 Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Mon, 17 Jun 2019 13:25:18 +0100 Subject: IVGCVSW-2779 Fix Android Q build * Removed names of unused variables, as they cause the Android Q build to fail Change-Id: I4b091d6af05a67ce0aa4fcde3c5048a4a75798fc Signed-off-by: Matteo Martincigh --- include/armnn/LayerVisitorBase.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/armnn/LayerVisitorBase.hpp b/include/armnn/LayerVisitorBase.hpp index f1abab56e7..b4a2ac7870 100644 --- a/include/armnn/LayerVisitorBase.hpp +++ b/include/armnn/LayerVisitorBase.hpp @@ -17,7 +17,7 @@ struct VisitorThrowingPolicy struct VisitorNoThrowPolicy { - static void Apply(const std::string& unusedMessage = "") {} + static void Apply(const std::string&) {} }; // Visitor base class with empty implementations. @@ -136,7 +136,7 @@ public: const char*) override { DefaultPolicy::Apply(__func__); } void VisitOutputLayer(const IConnectableLayer*, - LayerBindingId id, + LayerBindingId, const char*) override { DefaultPolicy::Apply(__func__); } void VisitPadLayer(const IConnectableLayer*, -- cgit v1.2.1