preparing for functions

This commit is contained in:
2021-07-14 23:18:54 +02:00
parent eebfaacde4
commit 24d4fb2567
9 changed files with 535 additions and 467 deletions

View File

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