1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Remove C++ comments from btree.c. (CVS 277)

FossilOrigin-Name: 4b7710e2daadffb716bd88f3a213f94ffbb750ef
This commit is contained in:
drh
2001-10-02 13:01:48 +00:00
parent 33048c0b92
commit 100569d862
4 changed files with 19 additions and 17 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.31 2001/09/27 03:22:33 drh Exp $
** $Id: btree.c,v 1.32 2001/10/02 13:01:49 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -2505,13 +2505,13 @@ Pager *sqliteBtreePager(Btree *pBt){
*/
typedef struct SanityCheck SanityCheck;
struct SanityCheck {
Btree *pBt; // The tree being checked out
Pager *pPager; // The associated pager. Also accessible by pBt->pPager
int nPage; // Number of pages in the database
int *anRef; // Number of times each page is referenced
int nTreePage; // Number of BTree pages
int nByte; // Number of bytes of data stored on BTree pages
char *zErrMsg; // An error message. NULL of no errors seen.
Btree *pBt; /* The tree being checked out */
Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */
int nPage; /* Number of pages in the database */
int *anRef; /* Number of times each page is referenced */
int nTreePage; /* Number of BTree pages */
int nByte; /* Number of bytes of data stored on BTree pages */
char *zErrMsg; /* An error message. NULL of no errors seen. */
};
/*