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

Fix a comment typo in the previous check-in. (CVS 2691)

FossilOrigin-Name: 49c952807dabd80bfeb46caf55856aaab988226c
This commit is contained in:
drh
2005-09-13 00:02:16 +00:00
parent 4b529d97ff
commit b27795c183
3 changed files with 9 additions and 9 deletions

View File

@@ -11,14 +11,14 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.415 2005/09/13 00:00:01 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.416 2005/09/13 00:02:17 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
/*
** Many people are failing to set -DNDEBUG=1 when compiling SQLite.
** Setting NDEBUG makes the code smaller and run slower. So the following
** Setting NDEBUG makes the code smaller and run faster. So the following
** lines are added to automatically set NDEBUG unless the -DSQLITE_DEBUG=1
** option is set. Thus NDEBUG becomes an opt-in rather than an opt-out
** feature.