Avoid breaking changes.

This commit is contained in:
ArthurSonzogni 2024-12-26 18:42:38 +01:00
parent 6900283afe
commit 634870f44d
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ using Elements = std::vector<Element>;
class Node { class Node {
public: public:
Node(); Node();
explicit Node(Elements children); Node(Elements children);
Node(const Node&) = delete; Node(const Node&) = delete;
Node(const Node&&) = delete; Node(const Node&&) = delete;
Node& operator=(const Node&) = delete; Node& operator=(const Node&) = delete;

View File

@ -36,8 +36,8 @@ class TableSelection;
class Table { class Table {
public: public:
Table(); Table();
explicit Table(std::vector<std::vector<std::string>>); Table(std::vector<std::vector<std::string>>);
explicit Table(std::vector<std::vector<Element>>); Table(std::vector<std::vector<Element>>);
Table(std::initializer_list<std::vector<std::string>> init); Table(std::initializer_list<std::vector<std::string>> init);
TableSelection SelectAll(); TableSelection SelectAll();
TableSelection SelectCell(int column, int row); TableSelection SelectCell(int column, int row);