summaryrefslogtreecommitdiff
path: root/src/node.cc
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-26 02:24:26 -0700
committerFuwn <[email protected]>2022-06-26 02:24:26 -0700
commit0a1e6185d1a1e5a923e483d6bc36888ca49e16b8 (patch)
tree899d9a449838def9d02c3d46999cc4e1dc5036ac /src/node.cc
parentrefactor(node): no explicit copy constructor (diff)
downloadcait-0a1e6185d1a1e5a923e483d6bc36888ca49e16b8.tar.xz
cait-0a1e6185d1a1e5a923e483d6bc36888ca49e16b8.zip
refactor(node): hide stringable
Diffstat (limited to 'src/node.cc')
-rw-r--r--src/node.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node.cc b/src/node.cc
index 0079dcb..9b76c27 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -22,12 +22,6 @@
namespace cait::node {
-stringable::stringable() = default;
-
-stringable::stringable(const stringable &) = default;
-
-stringable::~stringable() = default;
-
variable::variable(const token &variable_name,
std::vector<token> variable_value_list)
: _name(variable_name), _value_list(std::move(variable_value_list)) {}