Suppress false positive

This commit is contained in:
Ben Meadors
2025-07-25 10:41:59 -05:00
parent 37332e2ad6
commit bead96eaee
4 changed files with 53 additions and 8 deletions

View File

@@ -56,13 +56,7 @@ class MockMeshService : public MeshService
messages_.emplace_back(*m);
releaseMqttClientProxyMessageToPool(m);
}
void sendClientNotification(meshtastic_ClientNotification *n) override
{
notifications_.emplace_back(*n);
releaseClientNotificationToPool(n);
}
std::list<meshtastic_MqttClientProxyMessage> messages_; // Messages received from the MeshService.
std::list<meshtastic_ClientNotification> notifications_; // Notifications received from the MeshService.
std::list<meshtastic_MqttClientProxyMessage> messages_; // Messages received from the MeshService.
};
// Minimal NodeDB needed to return values from getMeshNode.