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.
2 parents f14f437 + 35fdf90 commit 76472dbCopy full SHA for 76472db
tests/flags.cc
@@ -2,7 +2,7 @@
2
#include <cstdio>
3
#include <cstdlib>
4
#include <sqlite_modern_cpp.h>
5
-#include <endian.h>
+#include <sys/types.h>
6
using namespace sqlite;
7
using namespace std;
8
@@ -14,7 +14,7 @@ struct TmpFile
14
~TmpFile() { remove(fname.c_str()); }
15
};
16
17
-#if __BYTE_ORDER == __BIG_ENDIAN
+#if BYTE_ORDER == BIG_ENDIAN
18
#define OUR_UTF16 "UTF-16be"
19
#else
20
#define OUR_UTF16 "UTF-16le"
0 commit comments