lint, docs, remove unused includes

This commit is contained in:
John
2023-10-12 21:29:31 +02:00
parent 4133c67a71
commit 6c66fd553b
6 changed files with 17 additions and 24 deletions
+4 -4
View File
@@ -684,12 +684,12 @@ class KnxNetConnection : public KnxConnection {
return nullptr;
}
// copydoc
// @copydoc
knx_addr_t getAddress() const override {
return m_addr;
}
// copydoc
// @copydoc
void setAddress(knx_addr_t address) override {
m_addr = address;
// flush duplication check buffers
@@ -697,12 +697,12 @@ class KnxNetConnection : public KnxConnection {
m_lastSentFrames.reset();
}
// copydoc
// @copydoc
bool isProgrammingMode() const override {
return m_programmingMode;
}
// copydoc
// @copydoc
void setProgrammingMode(bool on) override {
m_programmingMode = on;
}