This commit is contained in:
J. Nick Koston
2026-03-13 13:27:39 -10:00
parent 303c6513ee
commit 2a3c451fd3
+4 -3
View File
@@ -1946,9 +1946,10 @@ class LwIPLock {
LwIPLock();
~LwIPLock();
#else
// No lwIP core locking — inline no-ops
LwIPLock() = default;
~LwIPLock() = default;
// No lwIP core locking — inline no-ops (empty bodies instead of = default
// to prevent clang-tidy unused-variable warnings at call sites)
LwIPLock() {}
~LwIPLock() {}
#endif
};