diff options
| author | Fuwn <[email protected]> | 2022-06-26 02:24:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-26 02:24:26 -0700 |
| commit | 0a1e6185d1a1e5a923e483d6bc36888ca49e16b8 (patch) | |
| tree | 899d9a449838def9d02c3d46999cc4e1dc5036ac /src/node.cc | |
| parent | refactor(node): no explicit copy constructor (diff) | |
| download | cait-0a1e6185d1a1e5a923e483d6bc36888ca49e16b8.tar.xz cait-0a1e6185d1a1e5a923e483d6bc36888ca49e16b8.zip | |
refactor(node): hide stringable
Diffstat (limited to 'src/node.cc')
| -rw-r--r-- | src/node.cc | 6 |
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)) {} |