Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-28 | Add assertions for all non-null pointers in the public API | David Robillard | 1 | -0/+4 | |
Clang issues warnings at build time based on the SERD_NONNULL annotations, which is a much better approach in general. However, it does not cover cases where the API is being used with another compiler, or without a compiler that can statically check things at all (such as Python or other dynamic language bindings). In those situations, getting a clear assertion message is a lot less confusing than a random crash somewhere in serd, and it makes it clear that the bug is in the caller, so I think it's worth the tedious verbosity. | |||||
2022-01-14 | Avoid dynamic allocation of world blank node | David Robillard | 1 | -6/+8 | |
2022-01-14 | Expose low-level node construction API | David Robillard | 1 | -1/+1 | |
2022-01-14 | Add extensible logging API | David Robillard | 1 | -39/+37 | |
2022-01-13 | Make Reader always read from a ByteSource | David Robillard | 1 | -27/+0 | |
2022-01-13 | Split up serd_internal.h | David Robillard | 1 | -1/+1 | |
2022-01-13 | Cache commonly used nodes in the world | David Robillard | 1 | -0/+26 | |
2022-01-13 | Add SerdCaret | David Robillard | 1 | -5/+9 | |
2022-01-13 | Add serd_world_get_blank() | David Robillard | 1 | -2/+25 | |
2022-01-13 | Use thread-safe strerror_r() if available | David Robillard | 1 | -6/+6 | |
2022-01-13 | Move fopen wrapper to world | David Robillard | 1 | -0/+28 | |
2022-01-13 | Move error handling to world | David Robillard | 1 | -0/+32 | |
2022-01-13 | Add SerdWorld for shared library state | David Robillard | 1 | -0/+40 | |