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

Remove unused p4 element from the {quote: VdbeOpList} object. (CVS 4720)

FossilOrigin-Name: 1c37d7b69b672987a6974f4193f933666f4f0c3a
This commit is contained in:
drh
2008-01-17 17:27:30 +00:00
parent d847eaad91
commit 127b0a6105
3 changed files with 8 additions and 9 deletions

View File

@@ -15,7 +15,7 @@
** or VDBE. The VDBE implements an abstract machine that runs a
** simple program to access and modify the underlying database.
**
** $Id: vdbe.h,v 1.124 2008/01/09 18:31:45 drh Exp $
** $Id: vdbe.h,v 1.125 2008/01/17 17:27:31 drh Exp $
*/
#ifndef _SQLITE_VDBE_H_
#define _SQLITE_VDBE_H_
@@ -80,7 +80,6 @@ struct VdbeOpList {
signed char p1; /* First operand */
signed char p2; /* Second parameter (often the jump destination) */
signed char p3; /* Third parameter */
char *p4; /* Fourth parameter */
};
typedef struct VdbeOpList VdbeOpList;