usql updates, lexer changes

This commit is contained in:
2021-09-15 21:22:24 +02:00
parent 7e4a4b5583
commit 1e0506e6cd
21 changed files with 986 additions and 777 deletions

View File

@@ -2,11 +2,6 @@
namespace usql {
Exception::Exception(const std::string &msg) : std::runtime_error(msg) {
cause = msg;
}
Exception::Exception(const std::string msg) : std::runtime_error(msg) {}
const char *Exception::what() const noexcept { return cause.c_str(); }
}
} // namespace