diff options
author | drh <drh@noemail.net> | 2011-06-16 00:54:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-06-16 00:54:45 +0000 |
commit | 6b96771b821bdff9db39bd51b5923d846c92bc69 (patch) | |
tree | 963798c7a23c85478a06dbc1c83b6325ce9fa21c /ext/fts3/fts3_snippet.c | |
parent | babb61f3465789cc0eec99455217fcd97084bd57 (diff) | |
download | sqlite-6b96771b821bdff9db39bd51b5923d846c92bc69.tar.gz sqlite-6b96771b821bdff9db39bd51b5923d846c92bc69.zip |
Changes to #ifdefs so that the build goes correctly if the only FTS macro
defined is SQLITE_ENABLE_FTS4.
FossilOrigin-Name: a0b43a320e6491de7070966ed7c3ec55fd660a85
Diffstat (limited to 'ext/fts3/fts3_snippet.c')
-rw-r--r-- | ext/fts3/fts3_snippet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fts3/fts3_snippet.c b/ext/fts3/fts3_snippet.c index 5ae3a16fc..0da370c7e 100644 --- a/ext/fts3/fts3_snippet.c +++ b/ext/fts3/fts3_snippet.c @@ -11,9 +11,9 @@ ****************************************************************************** */ +#include "fts3Int.h" #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) -#include "fts3Int.h" #include <string.h> #include <assert.h> |