Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-27 | Simplify clang-tidy configuration | David Robillard | 1 | -51/+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-09-08 | Make learned MIDI bindings channel specific | Loki Davison | 1 | -7/+37 | |
2022-08-18 | Fix whitespace | David Robillard | 1 | -2/+1 | |
2022-08-18 | Clean up special member functions | David Robillard | 1 | -1/+0 | |
2022-08-18 | Remove redundant "inline" specifiers | David Robillard | 16 | -93/+97 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 20 | -46/+49 | |
2022-08-18 | Use consistent brace wrapping for namespaces | David Robillard | 6 | -6/+18 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 15 | -18/+32 | |
2022-08-18 | Use consistent brace wrapping for struct definitions | David Robillard | 4 | -8/+4 | |
2022-08-18 | Fix overly long line comments | David Robillard | 2 | -2/+2 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 11 | -19/+19 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 18 | -49/+26 | |
2022-08-18 | Fix include order | David Robillard | 4 | -4/+7 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 27 | -88/+178 | |
2022-08-18 | Use default member initialization | David Robillard | 60 | -243/+120 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 10 | -15/+25 | |
2022-08-18 | Fix control binding value computation | David Robillard | 2 | -6/+8 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 12 | -37/+27 | |
2022-08-18 | Switch to meson build system | David Robillard | 5 | -113/+143 | |
2022-08-18 | Clean up includes | David Robillard | 3 | -0/+7 | |
2022-08-18 | Separate export macro definitions between modules | David Robillard | 14 | -24/+55 | |
2022-08-18 | Fix clang-tidy header filter regex | David Robillard | 1 | -1/+1 | |
2022-08-18 | Clean up includes | David Robillard | 10 | -18/+10 | |
2022-08-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 1 | -0/+17 | |
2022-05-27 | Fix build on systems without SSE | David Robillard | 1 | -1/+1 | |
2021-06-04 | Switch to C++14 and fix build with GCC 10 | David Robillard | 7 | -42/+52 | |
GCC was having problems with this make_unique overload, but I don't care about C++11 compatibility at this point anyway, so it's easiest to just remove it. | |||||
2021-04-01 | Fix deleting connected ports in subgraphs | David Robillard | 2 | -1/+13 | |
2021-04-01 | Factor out finding adjacent arcs for disconnection | David Robillard | 2 | -22/+32 | |
2021-01-02 | Pass by value and use std::move | David Robillard | 8 | -17/+15 | |
2021-01-02 | Update for latest raul | David Robillard | 79 | -293/+299 | |
2020-12-15 | Use separate clang-tidy configurations for server and GUI | David Robillard | 1 | -0/+56 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 64 | -72/+263 | |
2020-12-14 | Enable clang-analyzer-webkit.NoUncountedMemberChecker | David Robillard | 1 | -2/+5 | |
2020-12-14 | Avoid "using namespace" | David Robillard | 6 | -63/+67 | |
2020-12-14 | Remove Jack session support | David Robillard | 2 | -67/+0 | |
2020-11-12 | Remove spurious semicolon | David Robillard | 1 | -1/+1 | |
2020-11-11 | Fix potential state memory leaks | David Robillard | 7 | -52/+101 | |
2020-11-11 | Fix buffer memory leaks on shutdown | David Robillard | 1 | -4/+8 | |
2020-09-27 | Fix include order | David Robillard | 1 | -4/+4 | |
2020-08-03 | Clean up includes | David Robillard | 70 | -67/+472 | |
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 Raul::managed_ptr alias | David Robillard | 26 | -198/+199 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 71 | -369/+447 | |
2020-08-02 | Remove redundant pointer get() calls | David Robillard | 5 | -6/+6 | |
2020-08-02 | Use nullptr for empty smart pointers | David Robillard | 8 | -14/+15 | |
2020-08-02 | Use auto with pointer casts to remove redundancy | David Robillard | 3 | -12/+12 | |
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 15 | -89/+106 | |
2020-08-02 | Rename memory utility header | David Robillard | 20 | -20/+20 | |
2020-08-02 | Fix implicit-fallthrough warnings | David Robillard | 4 | -1/+6 | |
2020-08-02 | Fix shadow warnings | David Robillard | 9 | -33/+39 | |