mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 06:58:46 +00:00
folder structure refactoring
This commit is contained in:
parent
ef88e6af86
commit
78c696b99a
30 changed files with 40 additions and 22 deletions
|
|
@ -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(); }
|
||||
|
||||
//
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue