This commit is contained in:
2025-08-15 12:18:19 +03:00
parent e934bd3932
commit 61e41b1a1d
2 changed files with 19 additions and 5 deletions

View File

@@ -60,7 +60,10 @@ struct MccNullLogger {
typedef int loglevel_t;
void setLogLevel(loglevel_t){};
loglevel_t getLogLevel() const { return 0; };
loglevel_t getLogLevel() const
{
return 0;
};
void logMessage(loglevel_t, const std::string&) {};
void logError(const std::string&) {};
@@ -632,7 +635,7 @@ struct MccPZoneAbstractContainer {
}
// must return true if the given telemetry coordinates are in any of zones in the containe and
// must return true if the given telemetry coordinates are in any of zones in the container and
// false otherwise
template <typename RT>
bool pzInZone(this auto&& self, const TelemetryDataT& tdata, RT& result)