Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-28 | Replace serdi with more fine-grained tools | David Robillard | 1 | -2/+0 | |
Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective. | |||||
2022-01-28 | Support writing all escapes in Turtle and TriG prefixed names | David Robillard | 1 | -1/+0 | |
2022-01-14 | Add model | David Robillard | 1 | -0/+1 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 1 | -0/+1 | |
2022-01-13 | Define _POSIX_C_SOURCE globally in the build system | David Robillard | 1 | -2/+0 | |
Using inconsistent defines like this that affect the standard library implementation can cause issues. So, doing this consistently for the whole library is a better approach, although it unfortunately makes the code more difficult to compile manually. | |||||
2022-01-13 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -1/+2 | |
2021-07-08 | Suppress new warnings in clang-tidy 12 | David Robillard | 1 | -0/+3 | |
2021-05-31 | Remove default case from exhaustive switch | David Robillard | 1 | -0/+1 | |
2020-12-31 | Avoid "else" after "break" and "return" | David Robillard | 1 | -1/+0 | |
2020-12-15 | Suppress new clang-tidy warnings | David Robillard | 1 | -1/+6 | |
2020-11-12 | Use C11 if possible | David Robillard | 1 | -0/+1 | |
2020-11-09 | Use separate clang-tidy configurations for implementation and tests | David Robillard | 1 | -0/+13 | |