display

Layout and Rendering TUI library
git clone git://git.dimitrijedobrota.com/display.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING

commita245e038ed545bc3b38b50c507f747d294427bb4
parent27906dfc585112bf4f4e3ca7c09034524a5045bb
authorDimitrije Dobrota <mail@dimitrijedobrota.com>
dateThu, 6 Mar 2025 18:02:23 +0100

Need move assign because of std::variant...

Diffstat:
Minclude/display/element.hpp|+-

1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/include/display/element.hpp b/include/display/element.hpp

@@ -16,7 +16,7 @@ public:

Element& operator=(const Element&) = delete;
Element(Element&&) = default;
Element& operator=(Element&&) = delete;
Element& operator=(Element&&) = default;
virtual ~Element() = default;