diff --git a/include/ftxui/dom/node.hpp b/include/ftxui/dom/node.hpp index f43157a9d..a462b0a06 100644 --- a/include/ftxui/dom/node.hpp +++ b/include/ftxui/dom/node.hpp @@ -22,7 +22,7 @@ using Elements = std::vector; class Node { public: Node(); - explicit Node(Elements children); + Node(Elements children); Node(const Node&) = delete; Node(const Node&&) = delete; Node& operator=(const Node&) = delete; diff --git a/include/ftxui/dom/table.hpp b/include/ftxui/dom/table.hpp index 5460237dc..698e6b325 100644 --- a/include/ftxui/dom/table.hpp +++ b/include/ftxui/dom/table.hpp @@ -36,8 +36,8 @@ class TableSelection; class Table { public: Table(); - explicit Table(std::vector>); - explicit Table(std::vector>); + Table(std::vector>); + Table(std::vector>); Table(std::initializer_list> init); TableSelection SelectAll(); TableSelection SelectCell(int column, int row);