* If the ButtonConfig is created and deleted on the heap, a virtual * destructor is technically required by the C++ language to prevent * memory leaks. But ButtonConfig does not have any memory to leak, so * everything is fine even without a virtual destructor. This virtual * destructor definition is provided for the sole purpose of keeping the * compiler quiet.
| 216 | * statement above. |
| 217 | */ |
| 218 | virtual ~ButtonConfig() = default; |
| 219 | #endif |
| 220 | |
| 221 | /** Milliseconds to wait for debouncing. */ |
nothing calls this directly
no outgoing calls
no test coverage detected