1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-21 09:00:59 +03:00

Remove a blank line in sqlite.h.in that was preventing the

SQLITE_LOCKED_SHAREDCACHE constant appears in the automatically-generated
documentation.  Ticket #3775. (CVS 6446)

FossilOrigin-Name: 65f9d3b948cd6ed4728ab49833b9f2fca96563a2
This commit is contained in:
drh
2009-04-03 12:12:58 +00:00
parent 07758962f5
commit 0d1d5abffa
3 changed files with 8 additions and 9 deletions

View File

@@ -30,7 +30,7 @@
** the version number) and changes its name to "sqlite3.h" as
** part of the build process.
**
** @(#) $Id: sqlite.h.in,v 1.437 2009/04/02 18:32:27 drh Exp $
** @(#) $Id: sqlite.h.in,v 1.438 2009/04/03 12:12:59 drh Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
@@ -382,7 +382,6 @@ int sqlite3_exec(
#define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8))
#define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8))
#define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8))
#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8) )
/*