From 6504f196bb99767ade7701b4445df258756753d4 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 18 Jun 2017 20:32:03 +0300 Subject: [PATCH] Fix compile error in SQLite connection after changing to builtin formatted functions. --- modules/sqlite/Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/sqlite/Connection.cpp b/modules/sqlite/Connection.cpp index 969e1b78..2b2512cf 100644 --- a/modules/sqlite/Connection.cpp +++ b/modules/sqlite/Connection.cpp @@ -346,9 +346,9 @@ void Register_Connection(Table & sqlns) Class< Connection >(sqlns.GetVM(), Typename::Str) // Constructors .Ctor() - .FmtCtor< const StackStrF & >() + .FmtCtor() .Ctor< const StackStrF &, Int32 >() - .FmtCtor< const StackStrF &, Int32, const StackStrF & >() + .FmtCtor< const StackStrF &, Int32 >() // Meta-methods .SquirrelFunc(_SC("_typename"), &Typename::Fn) .Func(_SC("_tostring"), &Connection::ToString)