diff options
author | drh <> | 2021-12-31 19:20:42 +0000 |
---|---|---|
committer | drh <> | 2021-12-31 19:20:42 +0000 |
commit | 54bc63815a14bc0c47d3d3f1bbecdf9eddd4feff (patch) | |
tree | 93b86abb615803b19188d7ce88f8c0269876694a /src/sqliteInt.h | |
parent | c158c07a22566cdd67670c14687d708b25126cb6 (diff) | |
download | sqlite-54bc63815a14bc0c47d3d3f1bbecdf9eddd4feff.tar.gz sqlite-54bc63815a14bc0c47d3d3f1bbecdf9eddd4feff.zip |
Simplify the sqlite3RunParser() routine by omitting the third parameter.
Results in a binary that is about 100 bytes smaller and 1.4M cycles faster.
FossilOrigin-Name: 6fb2a1bb0280d6e31291e3fd06bbcbbb28ef5fb27d3898e2327a50ac738ae1f3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 1b6f60211..14f4e0c10 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4406,7 +4406,7 @@ void sqlite3DequoteExpr(Expr*); void sqlite3DequoteToken(Token*); void sqlite3TokenInit(Token*,char*); int sqlite3KeywordCode(const unsigned char*, int); -int sqlite3RunParser(Parse*, const char*, char **); +int sqlite3RunParser(Parse*, const char*); void sqlite3FinishCoding(Parse*); int sqlite3GetTempReg(Parse*); void sqlite3ReleaseTempReg(Parse*,int); |