From: George Tasker Date: Fri, 17 Mar 2000 11:15:57 +0000 (+0000) Subject: Fixed compilation in release mode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/27508856293f4aa7540fd8c1a419ed6dc87a0cf2 Fixed compilation in release mode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/db.h b/include/wx/db.h index 2b6e2a0740..8d38e830a3 100644 --- a/include/wx/db.h +++ b/include/wx/db.h @@ -541,8 +541,11 @@ typedef enum wxDBMS DBMS; typedef wxODBC_ERRORS ODBC_ERRORS; typedef wxDbConnectInf DbStuff; typedef wxDbList DbList; -// typedef wxTablesInUse CstructTablesInUse; // mj10777 : OK : VC/Debug ; not OK VC/Release + GTK +#ifdef __WXDEBUG__ +typedef wxTablesInUse CstructTablesInUse; +#endif +>>>>>>> 1.30 // Deprecated function names that are replaced by the function names listed above wxDB WXDLLEXPORT *GetDbConnection(DbStuff *pDbStuff, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS); bool WXDLLEXPORT FreeDbConnection(wxDB *pDb);