Login
Check-in [d4733ab715]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:missed a spot with some // to /**/ conversion
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | feech-versionedsettingsupport
Files: files | file ages | folders
SHA1: d4733ab7155d7435268436d801c16ba377bdd0f8
User & Date: dave 2014-10-20 17:27:21.089
Context
2014-10-20
17:41
a few more warning reductions for gcc check-in: e1aa9edc17 user: dave tags: feech-versionedsettingsupport
17:27
missed a spot with some // to /**/ conversion check-in: d4733ab715 user: dave tags: feech-versionedsettingsupport
17:09
sqlite3ext.h should not have been included unconditionally -- it is specific to dlls where host app provides sqlite impl. sqlite3ext.h needed to be added to repo, nonetheless, for some configurations. As such, sqlite3.h,.c were updated to be consistent with that file version (and also the final released version of 3.8.7) check-in: 0ab8c75c49 user: dave tags: feech-versionedsettingsupport
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/fsl_ext_regexp.c.
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
** this expansion.
*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#ifndef SQLITE_CORE
#include "sqlite3ext.h"
//declares extern the vtable of all the sqlite3 functions (for loadable modules only)
SQLITE_EXTENSION_INIT3
#else
#include "sqlite3.h"
#endif
#include "fossil-scm/fossil-ext_regexp.h"
#include <string.h>
#include <stdlib.h>







|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
** this expansion.
*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#ifndef SQLITE_CORE
#include "sqlite3ext.h"
/*declares extern the vtable of all the sqlite3 functions (for loadable modules only)*/
SQLITE_EXTENSION_INIT3
#else
#include "sqlite3.h"
#endif
#include "fossil-scm/fossil-ext_regexp.h"
#include <string.h>
#include <stdlib.h>