Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-09-10 | Add test for reinserting a value that is a BTree node split pivot | David Robillard | 1 | -0/+20 | |
2021-09-10 | Add test for BTree iterator comparison | David Robillard | 1 | -0/+44 | |
2021-09-10 | Simplify BTree implementation | David Robillard | 3 | -263/+422 | |
2021-09-10 | Avoid inserting wildcards as values in BTree test | David Robillard | 1 | -8/+8 | |
2021-09-10 | Allow ZixBTreeIter to be allocated on the stack | David Robillard | 7 | -268/+174 | |
2021-09-10 | Remove destroy field of BTree and add zix_btree_clear() | David Robillard | 4 | -44/+109 | |
If this is used, it is only when clearing or freeing a tree. Allowing it to be given as a parameter directly there is clearer and avoids bloating the tree itself with information that isn't needed. | |||||
2021-09-10 | Remove BTree debug printing | David Robillard | 1 | -37/+0 | |
2021-09-10 | Avoid implicit padding in BTree nodes on 64-bit | David Robillard | 1 | -8/+15 | |
Might as well use 32-bit integers if the space is there anyway. | |||||
2021-09-10 | Fix benchmarking script | David Robillard | 1 | -4/+2 | |
2021-09-10 | Suppress new warnings in clang-tidy 12 | David Robillard | 4 | -0/+9 | |
2021-09-10 | Be explicit about the sign of defined integer constants | David Robillard | 3 | -10/+10 | |
2021-09-10 | Fix conversion warnings | David Robillard | 8 | -53/+71 | |
2021-09-10 | Remove ZixStrindex | David Robillard | 4 | -391/+0 | |
2021-07-17 | Remove ZixSortedArray | David Robillard | 5 | -636/+0 | |
2021-07-17 | Enable bugprone-suspicious-include clang-tidy check | David Robillard | 1 | -1/+0 | |
I'm not sure why this was suppressed but it seems fine now. | |||||
2021-07-17 | Avoid allegedly "suspicious" string comparisons | David Robillard | 6 | -7/+4 | |
I guess these are suspicious if you've never seen C before? | |||||
2021-07-17 | Avoid use of rand() | David Robillard | 8 | -69/+83 | |
2021-07-17 | Avoid use of atoi() and atol() | David Robillard | 8 | -14/+12 | |
2021-07-17 | Fix building without benchmarks | David Robillard | 1 | -1/+1 | |
2021-07-17 | Use line comments where appropriate | David Robillard | 14 | -224/+91 | |
2021-06-30 | Add pure attribute to internal BTree accessor functions | David Robillard | 1 | -0/+3 | |
2021-06-30 | Allow ZIX_API to be overridden | David Robillard | 1 | -8/+10 | |
2021-06-30 | Fix hash size after removing elements | David Robillard | 2 | -1/+8 | |
2021-04-14 | Fix VS2019 warnings | David Robillard | 2 | -1/+2 | |
2021-01-16 | Allow all free functions to be called on null | David Robillard | 4 | -6/+14 | |
2021-01-12 | Fix crash with optimized builds with GCC 10.1.0 | David Robillard | 1 | -1/+1 | |
2021-01-10 | Add configuration summary | David Robillard | 1 | -1/+12 | |
2021-01-10 | Sort meson options | David Robillard | 1 | -3/+3 | |
2020-12-31 | Remove unused files | David Robillard | 2 | -10/+0 | |
2020-12-31 | Remove waf wrapper script | David Robillard | 1 | -27/+0 | |
2020-12-31 | Improve Bitset test coverage | David Robillard | 1 | -0/+22 | |
2020-12-31 | Improve SortedArray test coverage | David Robillard | 1 | -2/+30 | |
2020-12-31 | Fix zix_sorted_array_iter_is_end() | David Robillard | 2 | -1/+9 | |
2020-12-31 | Fix MinGW build | David Robillard | 7 | -25/+66 | |
2020-12-31 | Fix potential balance overflow | David Robillard | 1 | -4/+4 | |
2020-12-31 | Update copyright headers | David Robillard | 35 | -48/+48 | |
2020-12-31 | Remove ZixChunk | David Robillard | 4 | -86/+19 | |
2020-12-31 | Force enable assertions in BTree test | David Robillard | 1 | -0/+2 | |
2020-12-31 | Switch to Meson | David Robillard | 6 | -462/+383 | |
2020-12-31 | Disable glib warnings in the code | David Robillard | 5 | -3/+49 | |
Though annoying, this avoids relying on special compiler flags to suppress them. | |||||
2020-12-31 | Remove entire library header | David Robillard | 1 | -35/+0 | |
2020-12-31 | Move benchmarking to a separate script | David Robillard | 3 | -33/+60 | |
2020-12-31 | Initialize all variables | David Robillard | 11 | -30/+32 | |
2020-12-31 | Strengthen main clang-tidy configuration | David Robillard | 1 | -6/+0 | |
2020-12-31 | Use stricter clang-tidy configuration for headers | David Robillard | 2 | -0/+13 | |
2020-12-31 | Fix use of reserved identifiers | David Robillard | 2 | -9/+9 | |
2020-12-31 | Remove ZIX_PRIVATE and ZIX_INLINE mechanisms | David Robillard | 4 | -62/+28 | |
A normal C library ought to be good enough for anybody. | |||||
2020-12-31 | Separate source from headers | David Robillard | 25 | -49/+18 | |
2020-12-31 | Add separate clang-tidy configuration for benchmarks | David Robillard | 1 | -0/+22 | |
2020-12-31 | Fix includes in benchmark utilities | David Robillard | 1 | -9/+15 | |