diff options
author | mattn <mattn.jp@gmail.com> | 2021-07-15 22:31:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 22:31:14 +0900 |
commit | cba6eaee486f22a1b0f3208b145673ed951cb840 (patch) | |
tree | 430dd141b1d1f8e7be17f5d2048286fdaac5e496 /sqlite3ext.h | |
parent | Update amalgamation code (#940) (diff) | |
download | golite-cba6eaee486f22a1b0f3208b145673ed951cb840.tar.gz golite-cba6eaee486f22a1b0f3208b145673ed951cb840.tar.xz |
Update amalgamation code (#955)
* Update amalgamation code
* Apply realPy's patch
Diffstat (limited to 'sqlite3ext.h')
-rw-r--r-- | sqlite3ext.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sqlite3ext.h b/sqlite3ext.h index b2b6e0c..ba6d12f 100644 --- a/sqlite3ext.h +++ b/sqlite3ext.h @@ -19,6 +19,10 @@ #ifndef SQLITE3EXT_H #define SQLITE3EXT_H #include "sqlite3-binding.h" +#ifdef __clang__ +#define assert(condition) ((void)0) +#endif + /* ** The following structure holds pointers to all of the SQLite API |