From 01a8eb27b17c0836f8cc8c2db858633c3b8a57dd Mon Sep 17 00:00:00 2001 From: kiritow <1362050620@qq.com> Date: Sat, 22 Apr 2017 10:33:43 +0800 Subject: [PATCH] Fix Compile Error --- MiniEngine_SQLite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MiniEngine_SQLite.cpp b/MiniEngine_SQLite.cpp index 31e1089..9248233 100644 --- a/MiniEngine_SQLite.cpp +++ b/MiniEngine_SQLite.cpp @@ -81,7 +81,7 @@ int SQLDB::exec(const std::string& SQLCommand) return _exec_real(SQLCommand,nullptr,nullptr); } -int SQLDB::exec(const std::string& SQLCommand,SQLCallback callback,void* param) +int SQLDB::exec_raw(const std::string& SQLCommand,SQLCallback callback,void* param) { return _exec_real(SQLCommand,callback,param); }