folder structure refactoring

This commit is contained in:
ProgramSnail 2023-08-02 18:19:11 +03:00
parent ef88e6af86
commit 78c696b99a
30 changed files with 40 additions and 22 deletions

View file

@ -45,9 +45,9 @@ template <typename T> class StatementProxy {
public:
StatementProxy(AnyStatementProxy proxy) : proxy_(proxy) {}
T *get() { proxy_.get()->get<T>().value(); }
T *get() { return proxy_.get()->get<T>().value(); }
const T *get() const { proxy_.get()->get<T>().value(); }
const T *get() const { return proxy_.get()->get<T>().value(); }
//