| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-08-12 | Reduce headers dependency graph | Maxime Coste | |
| Move more code into the implementation files to reduce the amount of code pulled by headers. | |||
| 2023-11-03 | Add support for 0-padding in format and replace uses of sprintf | Maxime Coste | |
| 2019-11-17 | src: Move JSON parsing code to its own file | Frank LENORMAND | |
| The `json_ui.cc` file contained both data-parsing and UI-related code. This commit moves the JSON parsing code to its own `json.cc` file, to separate concerns, make compilation faster when changes are made to either UI or parsing code, and make the parsing code more accessible to fuzzers. The signature of the following function: ``` auto parse_json(StringView json); ``` was changed to: ``` JsonResult parse_json(StringView json); ``` to avoid `auto` deduction issues at compile-time. | |||
