mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-11-03 15:57:19 +01:00
Fix compile error in SQLite connection after changing to builtin formatted functions.
This commit is contained in:
@@ -346,9 +346,9 @@ void Register_Connection(Table & sqlns)
|
|||||||
Class< Connection >(sqlns.GetVM(), Typename::Str)
|
Class< Connection >(sqlns.GetVM(), Typename::Str)
|
||||||
// Constructors
|
// Constructors
|
||||||
.Ctor()
|
.Ctor()
|
||||||
.FmtCtor< const StackStrF & >()
|
.FmtCtor()
|
||||||
.Ctor< const StackStrF &, Int32 >()
|
.Ctor< const StackStrF &, Int32 >()
|
||||||
.FmtCtor< const StackStrF &, Int32, const StackStrF & >()
|
.FmtCtor< const StackStrF &, Int32 >()
|
||||||
// Meta-methods
|
// Meta-methods
|
||||||
.SquirrelFunc(_SC("_typename"), &Typename::Fn)
|
.SquirrelFunc(_SC("_typename"), &Typename::Fn)
|
||||||
.Func(_SC("_tostring"), &Connection::ToString)
|
.Func(_SC("_tostring"), &Connection::ToString)
|
||||||
|
|||||||
Reference in New Issue
Block a user