Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
13 days | Use std::min() and std::max() | David Robillard | 4 | -16/+7 | |
13 days | Put local utility function in anonymous namespace | David Robillard | 1 | -0/+4 | |
13 days | Fix mismatched format specifier | David Robillard | 1 | -1/+1 | |
13 days | Fully parenthesize expressions | David Robillard | 10 | -18/+18 | |
13 days | Clean up includes and forward declarations | David Robillard | 67 | -166/+39 | |
13 days | Fix doc comment syntax and strict clang build | David Robillard | 2 | -3/+3 | |
A description here is now required by -Wdocumentation in clang 19. | |||||
13 days | Avoid using fallback for dependencies without a subproject | David Robillard | 2 | -8/+0 | |
This screws things up with older meson versions, particularly with include_type 'system'. I don't think it had any purpose since there's no corresponding subproject inside this one anyway. | |||||
2025-01-20 | Use "system" include type for all dependencies | David Robillard | 3 | -0/+6 | |
Things get confused when these flags differ across projects, so universally use "system" for external dependencies. | |||||
2025-01-10 | Use cppcheck working directory | David Robillard | 2 | -21/+25 | |
This allows for better analysis, and adds a cache to improve checking times, especially on repeated runs. | |||||
2024-12-19 | Order dependencies to prioritize flags of lower level libraries | David Robillard | 1 | -2/+4 | |
Specifically, to make the "system" include type for LV2 work and suppress C warnings there. Otherwise, the settings from other projects that depend on it (like lilv) take priority. This seems broken to me, and didn't used to happen, so I'm not really sure what's changed, but this fixes it. | |||||
2024-12-02 | Fix strict release and warning_level=2 GCC build | David Robillard | 1 | -4/+6 | |
2024-12-02 | Fix potential use of uninitialized value | David Robillard | 1 | -1/+1 | |
According to GCC's -Wmaybe-uninitialized, this is a potential use of an uninitialized value. I'm not seeing it, but the pattern with get_property() everywhere else is to store the return value as a reference, which makes the warning go away, so do that. | |||||
2024-11-24 | Remove IWYU pragmas that no longer seem necessary | David Robillard | 23 | -43/+25 | |
In a few cases here, we could get away with just a forward declaration but IWYU can't figure it out. Since this isn't a huge deal, just do what the tool says, since it's overall less hassle to just do what it says. | |||||
2024-11-24 | Use angle brackets for library includes | David Robillard | 241 | -1508/+1637 | |
2024-11-13 | Move warning suppression flags to main meson file | David Robillard | 2 | -125/+110 | |
2024-10-26 | Fix line wrapping in comments | David Robillard | 9 | -15/+21 | |
2024-10-12 | Fix CSS import syntax | David Robillard | 1 | -1/+1 | |
2024-10-12 | Remove redundant shorthand CSS property | David Robillard | 1 | -1/+0 | |
2024-10-12 | Remove unused Doxygen configuration and stylesheet | David Robillard | 2 | -3539/+0 | |
2024-10-12 | Fix configuration directory creation error handling | David Robillard | 1 | -2/+4 | |
2024-10-11 | Add missing include | David Robillard | 1 | -0/+1 | |
Apparently things are defined in different headers in different JACK headers. | |||||
2024-10-11 | Use std::transform() | David Robillard | 2 | -18/+29 | |
2024-10-11 | Use std::find_if() | David Robillard | 4 | -51/+58 | |
2024-10-11 | Use std::count_if() | David Robillard | 2 | -16/+10 | |
2024-10-11 | Use std::any_of() | David Robillard | 8 | -65/+54 | |
2024-10-11 | Clarify atom forge buffer dereferencing code | David Robillard | 2 | -3/+3 | |
2024-10-11 | Handle realloc failure and avoid potential null pointer arithmetic | David Robillard | 5 | -10/+29 | |
2024-10-11 | Move AtomForge implementation out of public headers | David Robillard | 3 | -59/+132 | |
2024-10-11 | Pass strings and large structures by const reference | David Robillard | 5 | -11/+10 | |
2024-10-11 | Remove redundant default values for meson options | David Robillard | 1 | -5/+5 | |
2024-10-11 | Call std::terminate() directly instead of rethrowing nothing | David Robillard | 4 | -3/+16 | |
2024-10-11 | Remove redundant method override | David Robillard | 2 | -8/+0 | |
2024-10-11 | Add missing const qualifiers | David Robillard | 6 | -20/+20 | |
2024-10-11 | Fix confusing iteration over collections of pointers | David Robillard | 2 | -5/+5 | |
2024-10-11 | Reduce variable scopes | David Robillard | 5 | -16/+15 | |
2024-10-11 | Make more single-argument constructors explicit | David Robillard | 10 | -14/+21 | |
2024-10-11 | Simplify PortType | David Robillard | 17 | -105/+100 | |
2024-10-06 | Fix inconsistent C-style cast | David Robillard | 1 | -1/+1 | |
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 | |