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 d073ffd commit f329ce8Copy full SHA for f329ce8
CHANGELOG.md
@@ -15,6 +15,7 @@
15
includes source code fixes for some build variants. Although
16
Windows build is included it only covers recent 64-bit Windows. More
17
work is need for older Windows variants. (#250).
18
+- Increase maximum allowed schema file size from 64 KiB to 1 MB (#256).
19
20
21
## [0.6.1]
config/config.h
@@ -54,7 +54,7 @@
54
* is covers the accumulated size of all included files. 0 is unlimited.
55
*/
56
#ifndef FLATCC_MAX_SCHEMA_SIZE
57
-#define FLATCC_MAX_SCHEMA_SIZE 64 * 1024
+#define FLATCC_MAX_SCHEMA_SIZE 1000000
58
#endif
59
60
/*
0 commit comments