aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Logging.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/Logging.hpp')
-rw-r--r--include/armnn/Logging.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/armnn/Logging.hpp b/include/armnn/Logging.hpp
index 72c2194b45..be84fadfd6 100644
--- a/include/armnn/Logging.hpp
+++ b/include/armnn/Logging.hpp
@@ -50,7 +50,7 @@ class LogSink
public:
virtual ~LogSink(){};
- virtual void Consume(const std::string& s) = 0;
+ virtual void Consume(const std::string&) = 0;
private:
};
@@ -112,6 +112,7 @@ class DebugOutputSink : public LogSink
public:
void Consume(const std::string& s) override
{
+ boost::ignore_unused(s);
#if defined(_MSC_VER)
OutputDebugString(s.c_str());
OutputDebugString("\n");