aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 13:25:18 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 14:28:43 +0000
commit0b679f03ead8848edc225d44afbbcc54d112e433 (patch)
tree39367aa3b361b0da8e0aab99ca80a9e9552c2027
parent3cb85f329c2128c671dae1ecfdf3ab136f254d84 (diff)
downloadarmnn-0b679f03ead8848edc225d44afbbcc54d112e433.tar.gz
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 <matteo.martincigh@arm.com>
-rw-r--r--include/armnn/LayerVisitorBase.hpp4
1 files 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*,