Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-17 | Remove redundant casts | David Robillard | 14 | -22/+17 | |
2024-07-17 | Use empty() method instead of checking length | David Robillard | 4 | -5/+3 | |
2024-07-17 | Avoid return with void value | David Robillard | 3 | -3/+2 | |
2024-07-17 | Remove unused local variable | David Robillard | 2 | -2/+0 | |
2024-07-17 | Suppress new warnings in clang and clang-tidy 18 | David Robillard | 3 | -0/+8 | |
2024-07-13 | Add missing includes | David Robillard | 17 | -35/+18 | |
According to include-what-you-use, anyway. Most of these seem questionable/unnecessary, but since the whole point here is to avoid wasting time doing manually what machines can do, just do what the tool says to keep the checks clean even if it's suboptimal. | |||||
2024-06-04 | Clean up includes | David Robillard | 5 | -1/+4 | |
2024-06-04 | Avoid use of "#if 0" as a supercomment | David Robillard | 1 | -1/+3 | |
Mainly because clang-tidy complains about it. | |||||
2024-06-04 | Avoid std::endl | David Robillard | 1 | -5/+5 | |
2024-03-14 | Fix library current_version on MacOS | David Robillard | 1 | -0/+1 | |
2023-09-23 | Clean up meson definitions | David Robillard | 3 | -60/+76 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 74 | -73/+84 | |
2023-09-22 | Suppress new warnings in clang-tidy 16 | David Robillard | 1 | -0/+1 | |
2023-09-22 | Avoid potential null dereferences | David Robillard | 2 | -3/+10 | |
2023-09-22 | Use a regular unique_ptr for compiled graphs | David Robillard | 23 | -70/+53 | |
Since these are always swapped by events which already have the ability to delete things after execution (by deleting them along with the event itself after processing), we can avoid the complexity and overhead of Raul::managed_ptr here by swapping the old graph for the new, retaining the owning reference to the old CompiledGraph in the event. | |||||
2023-08-23 | Suppress clang-tidy header guard warnings in private code | David Robillard | 1 | -0/+1 | |
2023-08-23 | Simplify conditional | David Robillard | 1 | -1/+1 | |
2023-08-23 | Add missing const qualifiers | David Robillard | 3 | -4/+4 | |
2023-08-23 | Fix build with GCC 13 | David Robillard | 1 | -2/+2 | |
2023-07-02 | Fix potentially dangling reference | David Robillard | 1 | -1/+1 | |
2023-05-12 | Fix const correctness | David Robillard | 1 | -1/+1 | |
2023-05-12 | Suppress new clang-tidy warnings | David Robillard | 1 | -0/+1 | |
2023-05-12 | Clean up includes | David Robillard | 1 | -1/+1 | |
2023-05-02 | Fix relative URI creation with newer serd | David Robillard | 2 | -1/+11 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 61 | -257/+260 | |
2023-01-14 | Fix and simplify library naming on Windows | David Robillard | 1 | -1/+2 | |
2022-12-14 | Strengthen clang-tidy configuration | David Robillard | 2 | -0/+2 | |
2022-12-14 | Avoid implicit conversions | David Robillard | 2 | -5/+7 | |
2022-12-14 | Avoid use of std::bind | David Robillard | 2 | -6/+4 | |
2022-12-14 | Avoid public member variables in classes | David Robillard | 1 | -3/+3 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 111 | -477/+223 | |
2022-12-14 | Use std::variant | David Robillard | 7 | -20/+18 | |
2022-12-14 | Use std::optional | David Robillard | 15 | -274/+289 | |
2022-12-14 | Use std::filesystem and std::make_unique | David Robillard | 12 | -267/+27 | |
2022-12-14 | Clean up includes | David Robillard | 3 | -2/+4 | |
2022-11-15 | Remove unused include | David Robillard | 1 | -1/+0 | |
2022-09-27 | Pass by value and use std::move | David Robillard | 2 | -3/+3 | |
2022-09-27 | Use braced init lists to avoid repeating return types | David Robillard | 14 | -28/+28 | |
2022-09-27 | Use std::make_unique | David Robillard | 5 | -7/+7 | |
2022-09-27 | Fix implicit integer conversions | David Robillard | 3 | -13/+20 | |
2022-09-27 | Fix field shadowing | David Robillard | 2 | -18/+19 | |
2022-09-27 | Avoid nullable to nonnull conversions | David Robillard | 2 | -2/+2 | |
2022-09-27 | Simplify clang-tidy configuration | David Robillard | 5 | -105/+37 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 4 | -4/+4 | |
Fedora takes issue with CC0. Although it doesn't really matter for this stuff (dual licensed anyway, questionably "software", certainly not patentable, and so on), this is simpler and more consistent with the ISC license used for the actual software anyway. | |||||
2022-09-08 | Make learned MIDI bindings channel specific | Loki Davison | 2 | -7/+38 | |
2022-08-18 | Fix whitespace | David Robillard | 1 | -2/+1 | |
2022-08-18 | Clean up special member functions | David Robillard | 2 | -2/+0 | |
2022-08-18 | Avoid using "static inline" for functions in headers | David Robillard | 1 | -3/+3 | |
2022-08-18 | Use "static inline" consistently over "inline static" | David Robillard | 2 | -2/+2 | |
2022-08-18 | Remove redundant "inline" specifiers | David Robillard | 17 | -96/+100 | |