From 634870f44dc4749a6d504d80471bc4695a3ae5b6 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Thu, 26 Dec 2024 18:42:38 +0100 Subject: [PATCH] Avoid breaking changes. --- include/ftxui/dom/node.hpp | 2 +- include/ftxui/dom/table.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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);