Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-02 | Use SORD_STATIC instead of SORD_SHARED to control visibility | David Robillard | 2 | -19/+12 | |
For consistency, this seems to be the most common convention. | |||||
2021-01-01 | Use __builtin_unreachable() with clang | David Robillard | 1 | -1/+1 | |
Clang apparently pretends to be GCC 4.2. | |||||
2021-01-01 | Suppress clang-tidy C11 warnings | David Robillard | 1 | -0/+2 | |
2021-01-01 | Remove the need for a generated configuration header | David Robillard | 4 | -7/+70 | |
2020-12-26 | Format all code with clang-format | David Robillard | 9 | -2965/+2977 | |
2020-12-24 | Fix build as a subproject | David Robillard | 1 | -10/+12 | |
2020-12-24 | Move headers to a conventional "include" directory | David Robillard | 3 | -11/+11 | |
2020-12-18 | Fix manifest test on Windows | David Robillard | 1 | -1/+1 | |
2020-12-18 | Run debug build tests on Windows | David Robillard | 1 | -5/+0 | |
2020-12-17 | Fix clang-tidy configuration for older versions | David Robillard | 1 | -2/+1 | |
2020-12-17 | Remove extra semicolons | David Robillard | 2 | -3/+2 | |
2020-12-16 | C++: Suppress clang-tidy warning in header | David Robillard | 1 | -1/+1 | |
2020-12-16 | C++: Use "auto" to avoid redundancy | David Robillard | 1 | -1/+1 | |
2020-12-16 | C++: Remove meaningless const qualifiers | David Robillard | 1 | -3/+3 | |
2020-12-16 | C++: Intialize variable | David Robillard | 1 | -1/+1 | |
2020-12-16 | C++: Use faster std::string::find overload | David Robillard | 1 | -1/+1 | |
2020-12-16 | C++: Avoid parameter copy overhead | David Robillard | 1 | -1/+1 | |
2020-12-16 | C++: Fix const correctness | David Robillard | 1 | -13/+14 | |
2020-12-16 | C++: Modernize special member functions | David Robillard | 1 | -9/+12 | |
2020-12-16 | Clean up includes | David Robillard | 11 | -48/+68 | |
2020-12-16 | Add clang-tidy configuration | David Robillard | 1 | -0/+59 | |
2020-12-01 | Add an assertion that the world is not null on node destruction | David Robillard | 1 | -0/+3 | |
2020-11-30 | Fix build on x32 with SSE 4.2 | David Robillard | 1 | -1/+19 | |
2020-11-17 | Remove use of deprecated serd_uri_to_path() | David Robillard | 2 | -4/+11 | |
2020-11-12 | Fix subproject environment when sord_validate can not be built | David Robillard | 1 | -2/+2 | |
2020-11-12 | Fix subproject environment when sord_validate can not be built | David Robillard | 1 | -3/+3 | |
2020-11-11 | Update BTree | David Robillard | 2 | -97/+196 | |
2020-11-11 | Set up environment for using serd_validate as a subproject | David Robillard | 1 | -0/+5 | |
2020-11-11 | Fix filtering query modes | David Robillard | 1 | -1/+18 | |
These were incorrect before because the tree was not ordered with respect to the search key. Enabling ZIX_BTREE_SORTED_CHECK (which should probably have a configure option) catches this. | |||||
2020-11-11 | Fix flaky literal comparison | David Robillard | 2 | -15/+39 | |
2020-11-11 | Suppress clang warning about nullability extension used by serd | David Robillard | 1 | -0/+1 | |
2020-11-11 | Fix another unsigned integer underflow | David Robillard | 1 | -1/+1 | |
2020-11-11 | Fix unsigned integer underflow | David Robillard | 1 | -1/+1 | |
This is not undefined behaviour, but sanitizers have a check for it that is useful sometimes, and this makes the return value more predictable anyway. | |||||
2020-11-11 | Update zix | David Robillard | 9 | -44/+64 | |
2020-09-27 | Fix documentation buildingv0.16.6 | David Robillard | 1 | -6/+0 | |
2020-09-27 | Remove deprecated Doxygen configuration keys | David Robillard | 1 | -30/+0 | |
2020-09-27 | Sord 0.16.6 | David Robillard | 2 | -1/+8 | |
2020-09-27 | Suppress warnings in ultra-strict release builds | David Robillard | 1 | -0/+5 | |
2020-09-27 | Normalise NEWS file | David Robillard | 1 | -1/+1 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Update zix | David Robillard | 7 | -35/+144 | |
2020-08-03 | Build as C++11 | David Robillard | 1 | -0/+1 | |
2020-08-03 | Fix deprecated-copy-dtor warnings | David Robillard | 2 | -1/+10 | |
2020-07-21 | Always include stdbool.h | David Robillard | 1 | -2/+1 | |
This was a workaround for ancient versions of MSVC that are no longer supported. | |||||
2020-07-18 | Use modern casts in C++ bindings | David Robillard | 2 | -45/+74 | |
2020-07-18 | Use nullptr in C++ bindings | David Robillard | 2 | -21/+28 | |
2020-07-17 | Update zix | David Robillard | 5 | -53/+181 | |
Fixes an issue introduced by 616517f among various other minor things. | |||||
2020-07-17 | Fix potential string null termination issue | David Robillard | 1 | -1/+1 | |