diff options
author | drh <drh@noemail.net> | 2005-08-24 16:54:05 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-08-24 16:54:05 +0000 |
commit | 978468d488db11fbe1a2459a75269e49bc93884b (patch) | |
tree | c9b9951d33101cda30f8a96cb8d771d363c70714 /src/expr.c | |
parent | 3ca84ba0a0b07683c88d9b59729a4f864b5c3f6c (diff) | |
download | sqlite-978468d488db11fbe1a2459a75269e49bc93884b.tar.gz sqlite-978468d488db11fbe1a2459a75269e49bc93884b.zip |
Remove a stray C++ style comment causing problems for some compilers. (CVS 2621)
FossilOrigin-Name: aa7dd3f2c72335fe7778c021e4b6bbbc4ec322df
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index 6808c4f99..e431da1ec 100644 --- a/src/expr.c +++ b/src/expr.c @@ -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); |