meson support: remove code warnings 2
This commit contains code changes necessary to support the increased
warning level from Meson builds. Most changes are for unused variables.
to keep the review size manageable, this commit contains only control
changes (plus one in sensor-monitor).
Change-Id: Ie20f1d9028add4b605e4cc9fb230940710365706
Signed-off-by: Mike Capps <mikepcapps@gmail.com>
diff --git a/control/json/utils/modifier.cpp b/control/json/utils/modifier.cpp
index 2374960..501a035 100644
--- a/control/json/utils/modifier.cpp
+++ b/control/json/utils/modifier.cpp
@@ -126,7 +126,7 @@
return value;
}
- PropertyVariantType operator()(bool val) override
+ PropertyVariantType operator()(bool) override
{
throw std::runtime_error{
"Bool not allowed as a 'minus' modifier value"};
@@ -271,7 +271,7 @@
return getDefaultValue(rangeValues.back().second, defaultValue);
}
- PropertyVariantType operator()(bool val) override
+ PropertyVariantType operator()(bool) override
{
throw std::runtime_error{
"Bool not allowed as a 'less_than' modifier value"};