We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbde843 commit 5a34bf9Copy full SHA for 5a34bf9
sqlite3ext.h
@@ -19,6 +19,10 @@
19
#ifndef SQLITE3EXT_H
20
#define SQLITE3EXT_H
21
#include "sqlite3-binding.h"
22
+#ifdef __clang__
23
+#define assert(condition) ((void)0)
24
+#endif
25
+
26
27
/*
28
** The following structure holds pointers to all of the SQLite API
upgrade/upgrade.go
@@ -153,7 +153,11 @@ func main() {
153
for scanner.Scan() {
154
text := scanner.Text()
155
if text == `#include "sqlite3.h"` {
156
- text = `#include "sqlite3-binding.h"`
+ text = `#include "sqlite3-binding.h"
157
158
159
160
+`
161
}
162
_, err = fmt.Fprintln(f, text)
163
if err != nil {
0 commit comments