From 1ee3fb4e5229bf0c3e4bbb647548619d077bbaac Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 26 Jun 2022 02:10:47 -0700 Subject: refactor(node): no explicit copy constructor --- src/node.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.hh b/src/node.hh index 992721c..0778962 100644 --- a/src/node.hh +++ b/src/node.hh @@ -45,7 +45,7 @@ using node_set = class stringable { public: stringable(); - explicit stringable(const stringable &); + stringable(const stringable &); virtual ~stringable(); [[nodiscard]] virtual auto string() const -> std::string = 0; }; -- cgit v1.2.3