diff options
| author | Fuwn <[email protected]> | 2022-06-24 20:59:44 -1000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-24 20:59:44 -1000 |
| commit | f992ee1812ec4d3de5d871cade768db2fdfda86a (patch) | |
| tree | f7d4854e989dea4852594e57cdafa0989e8bd0e4 /src/parser.hh | |
| parent | refactor(help): move version to constexpr (diff) | |
| download | cait-f992ee1812ec4d3de5d871cade768db2fdfda86a.tar.xz cait-f992ee1812ec4d3de5d871cade768db2fdfda86a.zip | |
fix(parser): parser_exception out-of-line virtual
Diffstat (limited to 'src/parser.hh')
| -rw-r--r-- | src/parser.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.hh b/src/parser.hh index 5d1cdb4..4c10a28 100644 --- a/src/parser.hh +++ b/src/parser.hh @@ -32,6 +32,7 @@ using node_tree = std::vector<node::node_set>; class parser_exception : public std::runtime_error { public: explicit parser_exception(const std::string &); + virtual auto x() -> void; }; struct token_bundle { |