changes here and there

This commit is contained in:
2021-07-12 18:45:51 +02:00
parent 5e69ce1047
commit 5e4480c767
18 changed files with 1692 additions and 1309 deletions

View File

@@ -1,9 +1,11 @@
#include "exception.h"
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(); }
}