summaryrefslogtreecommitdiff
path: root/src/node.hh
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-26 02:10:47 -0700
committerFuwn <[email protected]>2022-06-26 02:10:47 -0700
commit1ee3fb4e5229bf0c3e4bbb647548619d077bbaac (patch)
tree4e941a5a389279ef1b3a312548e1cc78f9c561b9 /src/node.hh
parentfix(src): add padding (diff)
downloadcait-1ee3fb4e5229bf0c3e4bbb647548619d077bbaac.tar.xz
cait-1ee3fb4e5229bf0c3e4bbb647548619d077bbaac.zip
refactor(node): no explicit copy constructor
Diffstat (limited to 'src/node.hh')
-rw-r--r--src/node.hh2
1 files changed, 1 insertions, 1 deletions
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;
};