Skip to content

Commit

Permalink
Avoid breaking changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurSonzogni committed Dec 26, 2024
1 parent 6900283 commit 634870f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ftxui/dom/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using Elements = std::vector<Element>;
class Node {
public:
Node();
explicit Node(Elements children);
Node(Elements children);
Node(const Node&) = delete;
Node(const Node&&) = delete;
Node& operator=(const Node&) = delete;
Expand Down
4 changes: 2 additions & 2 deletions include/ftxui/dom/table.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class TableSelection;
class Table {
public:
Table();
explicit Table(std::vector<std::vector<std::string>>);
explicit Table(std::vector<std::vector<Element>>);
Table(std::vector<std::vector<std::string>>);
Table(std::vector<std::vector<Element>>);
Table(std::initializer_list<std::vector<std::string>> init);
TableSelection SelectAll();
TableSelection SelectCell(int column, int row);
Expand Down

0 comments on commit 634870f

Please sign in to comment.