1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix another build problem for SQLITE_OMIT_VIRTUALTABLE builds.

FossilOrigin-Name: 5e1eb0fa3afd74251bc8f484e3edfa81b15610479431af205bd952c91eecd21f
This commit is contained in:
dan
2020-05-15 16:19:35 +00:00
parent cc1d9109c4
commit d48eafb984
4 changed files with 11 additions and 11 deletions

View File

@@ -13,8 +13,8 @@
** This file implements virtual-tables for examining the bytecode content
** of a prepared statement.
*/
#if defined(SQLITE_ENABLE_BYTECODE_VTAB) && !defined(SQLITE_OMIT_VIRTUALTABLE)
#include "sqliteInt.h"
#if defined(SQLITE_ENABLE_BYTECODE_VTAB) && !defined(SQLITE_OMIT_VIRTUALTABLE)
#include "vdbeInt.h"
/* An instance of the bytecode() table-valued function.