1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Work around a bug in MSVC++. Ticket #1513. (CVS 2763)

FossilOrigin-Name: 6331860e7754be6e0d2a484d66427947c0781dd6
This commit is contained in:
drh
2005-11-05 15:11:22 +00:00
parent 8a9f38feb2
commit 152410fade
3 changed files with 11 additions and 11 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.216 2005/11/04 22:03:30 drh Exp $
** @(#) $Id: pager.c,v 1.217 2005/11/05 15:11:23 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -1761,9 +1761,9 @@ void enable_simulated_io_errors(void){
sqlite3_io_error_pending = saved_cnt;
}
#else
# define clear_simulated_io_error(X)
# define disable_simulated_io_errors(X)
# define enable_simulated_io_errors(X)
# define clear_simulated_io_error()
# define disable_simulated_io_errors()
# define enable_simulated_io_errors()
#endif
/*