aboutsummaryrefslogtreecommitdiff
path: root/src/vdbe.h
diff options
context:
space:
mode:
authordrh <>2022-04-04 01:12:11 +0000
committerdrh <>2022-04-04 01:12:11 +0000
commit1c8486301f53137c73b19b83f1cb0def51f198ab (patch)
tree23939f1893ca65757a0a66282490fe6927ce497f /src/vdbe.h
parent8703edd3e9c10a687e1bf9f95901bca24c3a6881 (diff)
downloadsqlite-1c8486301f53137c73b19b83f1cb0def51f198ab.tar.gz
sqlite-1c8486301f53137c73b19b83f1cb0def51f198ab.zip
Only invoke sqlite3VdbeClearObject() from a single location, so that the
compiler is more likely to in-line the code. Performance increase and size reduction. FossilOrigin-Name: c6947a96e61f71aa61ca3d70d9e2612d784ab04d60fa88852b03cfce86b1bf2b
Diffstat (limited to 'src/vdbe.h')
-rw-r--r--src/vdbe.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vdbe.h b/src/vdbe.h
index fb383e3ed..e251dd666 100644
--- a/src/vdbe.h
+++ b/src/vdbe.h
@@ -244,7 +244,6 @@ int sqlite3VdbeMakeLabel(Parse*);
void sqlite3VdbeRunOnlyOnce(Vdbe*);
void sqlite3VdbeReusable(Vdbe*);
void sqlite3VdbeDelete(Vdbe*);
-void sqlite3VdbeClearObject(sqlite3*,Vdbe*);
void sqlite3VdbeMakeReady(Vdbe*,Parse*);
int sqlite3VdbeFinalize(Vdbe*);
void sqlite3VdbeResolveLabel(Vdbe*, int);