Remove [[nodiscard]] (#108)

This commit is contained in:
Ken Van Hoeylandt
2024-12-05 23:25:31 +01:00
committed by GitHub
parent 422bc01fdb
commit c6f1cd6098
9 changed files with 40 additions and 40 deletions
+4 -4
View File
@@ -8,11 +8,11 @@ class Display;
class Keyboard {
public:
[[nodiscard]] virtual bool start(lv_display_t* display) = 0;
[[nodiscard]] virtual bool stop() = 0;
[[nodiscard]] virtual bool isAttached() const = 0;
virtual bool start(lv_display_t* display) = 0;
virtual bool stop() = 0;
virtual bool isAttached() const = 0;
[[nodiscard]] virtual lv_indev_t* _Nullable getLvglIndev() = 0;
virtual lv_indev_t* _Nullable getLvglIndev() = 0;
};
}