Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-27 | Simplify clang-tidy configuration | David Robillard | 1 | -54/+1 | |
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 | Clean up special member functions | David Robillard | 1 | -1/+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 | 1 | -3/+3 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 3 | -4/+4 | |
2022-08-18 | Use consistent brace wrapping for namespaces | David Robillard | 8 | -8/+24 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 4 | -5/+10 | |
2022-08-18 | Use consistent brace wrapping for struct definitions | David Robillard | 1 | -2/+1 | |
2022-08-18 | Fix overly long line comments | David Robillard | 2 | -5/+5 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 4 | -9/+9 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 2 | -6/+3 | |
2022-08-18 | Fix include order | David Robillard | 6 | -6/+12 | |
2022-08-18 | Clean up path construction | David Robillard | 1 | -1/+1 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 14 | -51/+90 | |
2022-08-18 | Use default member initialization | David Robillard | 35 | -196/+120 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 1 | -1/+3 | |
2022-08-18 | Fix control binding value computation | David Robillard | 1 | -1/+0 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 10 | -69/+64 | |
2022-08-18 | Switch to meson build system | David Robillard | 8 | -134/+176 | |
2022-08-18 | Clean up includes | David Robillard | 1 | -4/+0 | |
2022-08-18 | Separate export macro definitions between modules | David Robillard | 1 | -1/+1 | |
2022-08-18 | Fix clang-tidy header filter regex | David Robillard | 1 | -1/+1 | |
2022-08-18 | Clean up includes | David Robillard | 2 | -1/+1 | |
2022-08-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 1 | -0/+13 | |
2021-04-01 | Fix invalid URI mapping when a property range is a blank node | David Robillard | 1 | -1/+3 | |
2021-01-02 | Update for latest raul | David Robillard | 19 | -80/+86 | |
2020-12-15 | Use separate clang-tidy configurations for server and GUI | David Robillard | 1 | -0/+68 | |
2020-12-15 | Clean up includes in gui | David Robillard | 61 | -237/+900 | |
2020-12-15 | Fix include guard | David Robillard | 1 | -3/+3 | |
2020-12-14 | Use emplace_back() | David Robillard | 1 | -2/+2 | |
2020-12-14 | Fix unnecessary parameter copying overhead | David Robillard | 28 | -140/+163 | |
2020-12-14 | Don't check for null before deleting pointer | David Robillard | 1 | -4/+5 | |
2020-12-14 | Fix redundant calls to smart pointer get() methods | David Robillard | 2 | -2/+2 | |
2020-12-14 | Don't use size() to check emptiness | David Robillard | 1 | -1/+1 | |
2020-12-14 | Fix inconsistent parameter name | David Robillard | 1 | -1/+1 | |
2020-12-14 | Isolate and initialize variable declarations | David Robillard | 2 | -2/+4 | |
2020-12-14 | Use range-based loops for module ports | David Robillard | 2 | -10/+10 | |
2020-12-14 | Use "auto" to avoid redundancy | David Robillard | 5 | -22/+25 | |
2020-12-14 | Avoid "using namespace" | David Robillard | 19 | -46/+62 | |
2020-12-14 | Fix include order | David Robillard | 2 | -3/+3 | |
2020-08-03 | Clean up includes | David Robillard | 2 | -9/+39 | |
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 | 51 | -446/+492 | |
2020-08-02 | Remove redundant pointer get() calls | David Robillard | 5 | -15/+14 | |
2020-08-02 | Use nullptr for empty smart pointers | David Robillard | 6 | -11/+9 | |
2020-08-02 | Use auto with pointer casts to remove redundancy | David Robillard | 10 | -37/+37 | |
2020-08-02 | Remove std::weak_ptr alias | David Robillard | 5 | -9/+12 | |
2020-08-02 | Rename memory utility header | David Robillard | 24 | -24/+24 | |
2020-08-02 | Fix implicit-fallthrough warnings | David Robillard | 1 | -0/+1 | |