Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-10-06 | Avoid using uninitialized va_list variables | David Robillard | 3 | -16/+22 | |
2024-10-06 | Explicitly destroy the world in LV2 plugin | David Robillard | 1 | -0/+1 | |
Makes no real difference, but avoids a seemingly unused variable. | |||||
2024-10-06 | Explicitly disallow copying or moving of App | David Robillard | 1 | -0/+5 | |
2024-10-06 | Avoid inefficient use of substr() to set strings to a prefix | David Robillard | 7 | -8/+7 | |
2024-10-06 | Remove dead code | David Robillard | 4 | -20/+0 | |
2024-10-06 | Remove redundant conditional clause | David Robillard | 1 | -1/+1 | |
2024-10-06 | Remove redundant assignment | David Robillard | 1 | -1/+0 | |
2024-10-06 | Add lint option and cppcheck test | David Robillard | 3 | -0/+57 | |
2024-07-17 | Add missing namespace comment | David Robillard | 1 | -1/+1 | |
2024-07-17 | Avoid use of jack_frame_time() | David Robillard | 2 | -22/+33 | |
This seems to be broken on the pipewire implementation of Jack, but we use FrameTimer for this on other drivers anyway, so just use that for Jack as well and avoid the issue entirely. Conveniently also exercises the clock and timestamp DLL code, which as it turns out, was itself broken. | |||||
2024-07-17 | Fix clock microseconds conversion | David Robillard | 1 | -2/+2 | |
This was off by a factor of 10 on non-Mach systems, due to a previous mistaken replacement of 1e3 with 100 (instead of the correct 1000). | |||||
2024-07-17 | Use uppercase integer literal suffixes | David Robillard | 6 | -10/+12 | |
2024-07-17 | Clean up includes and forward declarations | David Robillard | 35 | -32/+20 | |
According to include-what-you-use 0.22 on LLVM 18, anyway. Most of the changes seem vaguely reasonable, so as usual, just go with what the tool says because it's most useful when reports are typically clean. | |||||
2024-07-17 | Remove redundant inline specifier | David Robillard | 2 | -2/+1 | |
2024-07-17 | Avoid C-style casts and some size type conversions | David Robillard | 27 | -53/+58 | |
Aside from the syntactic cast changes, reduces some size types to 32-bits, since they can never be so large in practice. This eliminates some type conversions and shaves a few bytes. | |||||
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 | 6 | -0/+11 | |
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 | Suppress new warnings in clang-tidy 17 | David Robillard | 1 | -0/+2 | |
2024-06-04 | Fix potential memory leak | David Robillard | 1 | -0/+1 | |
2024-06-04 | Clean up includes | David Robillard | 5 | -1/+4 | |
2024-06-04 | Add missing std::forward | David Robillard | 1 | -1/+1 | |
2024-06-04 | Avoid use of "#if 0" as a supercomment | David Robillard | 2 | -2/+6 | |
Mainly because clang-tidy complains about it. | |||||
2024-06-04 | Avoid std::endl | David Robillard | 3 | -27/+18 | |
2024-03-14 | Fix library current_version on MacOS | David Robillard | 1 | -0/+1 | |
2023-09-23 | Clean up meson definitions | David Robillard | 6 | -116/+126 | |
2023-09-23 | Avoid const data members | David Robillard | 1 | -137/+137 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 78 | -83/+95 | |
2023-09-22 | Suppress new warnings in clang-tidy 16 | David Robillard | 2 | -0/+4 | |
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-09-22 | Suppress new warnings in clang 16 | David Robillard | 1 | -0/+2 | |
2023-08-23 | Suppress clang-tidy header guard warnings in private code | David Robillard | 2 | -0/+2 | |
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 | 2 | -4/+4 | |
2023-07-02 | Update required dependency versions | 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 | 6 | -9/+10 | |
2023-05-12 | Suppress new clang-tidy warnings | David Robillard | 2 | -0/+5 | |
2023-05-12 | Fix implicit widening conversions | David Robillard | 2 | -3/+3 | |
2023-05-12 | Fix include guard | David Robillard | 1 | -3/+3 | |
2023-05-12 | Clean up includes | David Robillard | 1 | -1/+1 | |
2023-05-02 | Replace strict option with new meson warning level | David Robillard | 4 | -211/+36 | |
2023-05-02 | Fix relative URI creation with newer serd | David Robillard | 3 | -1/+12 | |
2023-02-03 | Suppress warnings in LV2 headers | David Robillard | 1 | -22/+37 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 65 | -270/+274 | |