Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-10-06 | Add lint option and cppcheck test | David Robillard | 1 | -0/+28 | |
2024-07-17 | Avoid C-style casts and some size type conversions | David Robillard | 3 | -3/+2 | |
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-06-04 | Fix potential memory leak | David Robillard | 1 | -0/+1 | |
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 | 2 | -22/+13 | |
2023-09-23 | Clean up meson definitions | David Robillard | 1 | -24/+5 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 2 | -3/+2 | |
2023-08-23 | Suppress clang-tidy header guard warnings in private code | David Robillard | 1 | -0/+1 | |
2023-08-23 | Fix build with GCC 13 | David Robillard | 1 | -2/+2 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 2 | -12/+12 | |
2022-12-14 | Avoid implicit conversions | David Robillard | 1 | -1/+1 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 2 | -8/+4 | |
2022-12-14 | Use std::variant | David Robillard | 1 | -3/+3 | |
2022-12-14 | Use std::filesystem and std::make_unique | David Robillard | 3 | -113/+5 | |
2022-12-13 | Avoid throwing exceptions from main() | David Robillard | 1 | -5/+10 | |
2022-09-27 | Use std::make_unique | David Robillard | 2 | -3/+2 | |
2022-09-27 | Simplify clang-tidy configuration | David Robillard | 1 | -0/+16 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 1 | -1/+1 | |
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-08-18 | Fix whitespace | David Robillard | 1 | -1/+3 | |
2022-08-18 | Fix overly long line comments | David Robillard | 1 | -2/+2 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 1 | -1/+3 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 1 | -1/+1 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 1 | -1/+2 | |
2022-08-18 | Switch to meson build system | David Robillard | 1 | -0/+112 | |
2022-08-17 | Use eg-metro in tests instead of eg-sampler | David Robillard | 1 | -3/+3 | |
This plugin doesn't have external dependencies (like libsndfile), so is more likely to be present. | |||||
2021-01-02 | Update for latest raul | David Robillard | 1 | -3/+3 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 4 | -3/+13 | |
2020-12-14 | Fix redundant calls to smart pointer get() methods | David Robillard | 1 | -1/+1 | |
2020-12-14 | Avoid "using namespace" | David Robillard | 2 | -31/+70 | |
2020-08-03 | Clean up includes | David Robillard | 3 | -3/+2 | |
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check. | |||||
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 2 | -2/+1 | |
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 1 | -1/+2 | |
2020-08-02 | Rename memory utility header | David Robillard | 2 | -2/+2 | |
2020-08-02 | Clean up URI map interface | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix header-hygiene warning | David Robillard | 1 | -2/+4 | |
2020-08-02 | Add missing override specifiers | David Robillard | 1 | -1/+2 | |
2020-08-02 | Use auto with casts and allocations to remove redundancy | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix suppressed automatic moves | David Robillard | 1 | -1/+1 | |
2020-08-01 | Use modern casts | David Robillard | 2 | -9/+14 | |
2020-08-01 | Make set_bundle_path_from_code take a function pointer | David Robillard | 2 | -2/+2 | |
2020-08-01 | Remove superfluous semicolons | David Robillard | 2 | -23/+29 | |
2020-07-18 | Add missing static specifiers | David Robillard | 2 | -2/+2 | |
2019-11-10 | Make test suite depend only on LV2 | David Robillard | 10 | -34/+25 | |
2019-03-16 | Improve input path handling | David Robillard | 1 | -12/+20 | |
2019-03-09 | Clean up AtomForge | David Robillard | 1 | -15/+7 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 5 | -30/+33 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 3 | -15/+15 | |
2019-03-08 | Use smart pointers to manage World in programs | David Robillard | 2 | -8/+6 | |
2019-03-08 | Use smart pointers to handle FILE streams | David Robillard | 1 | -5/+5 | |
2019-03-08 | Make parser take mandatory arguments by reference | David Robillard | 2 | -2/+2 | |