From 7e69e705631f49a9258ff3067a67b19f54ea0b2b Mon Sep 17 00:00:00 2001 From: cxl Date: Sun, 15 Sep 2019 08:09:04 +0000 Subject: [PATCH] Sql: Fixed NOAPPSQL issue (thanks zsolt) git-svn-id: svn://ultimatepp.org/upp/trunk@13606 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Sql/Session.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uppsrc/Sql/Session.cpp b/uppsrc/Sql/Session.cpp index 635a9abc3..ed188774b 100644 --- a/uppsrc/Sql/Session.cpp +++ b/uppsrc/Sql/Session.cpp @@ -141,6 +141,8 @@ void SqlSession::PerThread(bool b) } #endif +#ifndef NOAPPSQL + void Sql::operator=(SqlSession& s) { Mutex::Lock __(sDefs); @@ -212,4 +214,6 @@ Sql& AppCursorR() return *empty; } +#endif + }