-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* constrain-parameters: UI: b/databubble.js: fix assertion ASE: processor.cc: use parameter->dconstrain() ASE: parameter: add dconstrain() to convert to double and constrain ASE: processor.cc: use Parameter::construct_hints() ASE: parameter: export construct_hints(), always use "stepped" hint for bools UI: b/propinput.js: give toggles preference over choices ASE: processor.cc: remove unused choices from boolean param ASE: serialize.cc: call jsonvalue_to_string() directly ASE: jsonapi.cc: call jsonobject_to_string() directly JSONIPC: jsonipc.hh: always write null instead of NAN, ±Inf Remove JsonWriteFlags from the (template) API. JSONIPC: Makefile: fix include path to external/rapidjson/ EXTERNAL: rapidjson: update Tencent/rapidjson to 2023-09-28 11:36:59 +0200 git -C external/rapidjson checkout f9d53419e912910fd8fa57d5705fa41425428c35 Among other changes, this provides kWriteNanAndInfNullFlag. ASE: parameter: value_from_text(): yield integers for text inputs of choices Signed-off-by: Tim Janik <[email protected]>
- Loading branch information
Showing
10 changed files
with
101 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule rapidjson
updated
27 files
+18 −8 | CMakeLists.txt | |
+5 −11 | RapidJSONConfig.cmake.in | |
+2 −3 | bin/unittestschema/address.json | |
+6 −4 | doc/features.md | |
+8 −0 | doc/schema.md | |
+2 −1 | example/schemavalidator/schemavalidator.cpp | |
+4 −3 | include/rapidjson/allocators.h | |
+1 −1 | include/rapidjson/document.h | |
+62 −8 | include/rapidjson/error/en.h | |
+77 −8 | include/rapidjson/error/error.h | |
+1 −1 | include/rapidjson/internal/biginteger.h | |
+1 −1 | include/rapidjson/internal/diyfp.h | |
+5 −5 | include/rapidjson/internal/dtoa.h | |
+16 −22 | include/rapidjson/pointer.h | |
+9 −9 | include/rapidjson/rapidjson.h | |
+580 −134 | include/rapidjson/schema.h | |
+12 −1 | include/rapidjson/writer.h | |
+2 −2 | test/unittest/allocatorstest.cpp | |
+1 −1 | test/unittest/cursorstreamwrappertest.cpp | |
+1 −1 | test/unittest/ostreamwrappertest.cpp | |
+5 −5 | test/unittest/pointertest.cpp | |
+644 −18 | test/unittest/schematest.cpp | |
+7 −5 | test/unittest/simdtest.cpp | |
+46 −39 | test/unittest/uritest.cpp | |
+21 −20 | test/unittest/valuetest.cpp | |
+30 −0 | test/unittest/writertest.cpp | |
+9 −0 | test/valgrind.supp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.