summaryrefslogtreecommitdiff
path: root/src/parser.cc
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-24 20:59:44 -1000
committerFuwn <[email protected]>2022-06-24 20:59:44 -1000
commitf992ee1812ec4d3de5d871cade768db2fdfda86a (patch)
treef7d4854e989dea4852594e57cdafa0989e8bd0e4 /src/parser.cc
parentrefactor(help): move version to constexpr (diff)
downloadcait-f992ee1812ec4d3de5d871cade768db2fdfda86a.tar.xz
cait-f992ee1812ec4d3de5d871cade768db2fdfda86a.zip
fix(parser): parser_exception out-of-line virtual
Diffstat (limited to 'src/parser.cc')
-rw-r--r--src/parser.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.cc b/src/parser.cc
index f853629..734be2f 100644
--- a/src/parser.cc
+++ b/src/parser.cc
@@ -26,6 +26,8 @@ namespace cait {
parser_exception::parser_exception(const std::string &message)
: std::runtime_error(message) {}
+auto parser_exception::x() -> void {}
+
token_bundle::token_bundle(std::size_t &_j, token_t &bundle_token,
std::vector<token_t> &_parsed_token_line,
std::vector<token_t> &_token_line)