1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 03:57:14 +01:00

Fix compile error in SQLite connection after changing to builtin formatted functions.

This commit is contained in:
Sandu Liviu Catalin 2017-06-18 20:32:03 +03:00
parent 80ad983089
commit 6504f196bb

View File

@ -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)