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

Remove a stray C++ style comment causing problems for some compilers. (CVS 2621)

FossilOrigin-Name: aa7dd3f2c72335fe7778c021e4b6bbbc4ec322df
This commit is contained in:
drh
2005-08-24 16:54:05 +00:00
parent 3ca84ba0a0
commit 978468d488
3 changed files with 8 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.219 2005/08/23 11:17:59 drh Exp $
** $Id: expr.c,v 1.220 2005/08/24 16:54:05 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1741,7 +1741,6 @@ void sqlite3ExprCode(Parse *pParse, Expr *pExpr){
sqlite3DequoteExpr(pExpr);
sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn,
pExpr->token.z, pExpr->token.n);
// sqlite3VdbeDequoteP3(v, -1);
} else {
assert( pExpr->iColumn == OE_Ignore );
sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0);