Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 61 | -257/+260 | |
2023-01-14 | Fix and simplify library naming on Windows | David Robillard | 1 | -1/+2 | |
2022-12-14 | Strengthen clang-tidy configuration | David Robillard | 2 | -0/+2 | |
2022-12-14 | Avoid implicit conversions | David Robillard | 2 | -5/+7 | |
2022-12-14 | Avoid use of std::bind | David Robillard | 2 | -6/+4 | |
2022-12-14 | Avoid public member variables in classes | David Robillard | 1 | -3/+3 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 111 | -477/+223 | |
2022-12-14 | Use std::variant | David Robillard | 7 | -20/+18 | |
2022-12-14 | Use std::optional | David Robillard | 15 | -274/+289 | |
2022-12-14 | Use std::filesystem and std::make_unique | David Robillard | 12 | -267/+27 | |
2022-12-14 | Clean up includes | David Robillard | 3 | -2/+4 | |
2022-11-15 | Remove unused include | David Robillard | 1 | -1/+0 | |
2022-09-27 | Pass by value and use std::move | David Robillard | 2 | -3/+3 | |
2022-09-27 | Use braced init lists to avoid repeating return types | David Robillard | 14 | -28/+28 | |
2022-09-27 | Use std::make_unique | David Robillard | 5 | -7/+7 | |
2022-09-27 | Fix implicit integer conversions | David Robillard | 3 | -13/+20 | |
2022-09-27 | Fix field shadowing | David Robillard | 2 | -18/+19 | |
2022-09-27 | Avoid nullable to nonnull conversions | David Robillard | 2 | -2/+2 | |
2022-09-27 | Simplify clang-tidy configuration | David Robillard | 5 | -105/+37 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 4 | -4/+4 | |
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 | 2 | -7/+38 | |
2022-08-18 | Fix whitespace | David Robillard | 1 | -2/+1 | |
2022-08-18 | Clean up special member functions | David Robillard | 2 | -2/+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 | 17 | -96/+100 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 32 | -67/+70 | |
2022-08-18 | Use consistent brace wrapping for namespaces | David Robillard | 14 | -14/+42 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 19 | -23/+42 | |
2022-08-18 | Use consistent brace wrapping for struct definitions | David Robillard | 6 | -12/+6 | |
2022-08-18 | Fix overly long line comments | David Robillard | 4 | -7/+7 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 18 | -33/+33 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 27 | -75/+39 | |
2022-08-18 | Fix include order | David Robillard | 11 | -11/+21 | |
2022-08-18 | Clean up path construction | David Robillard | 4 | -7/+6 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 55 | -268/+449 | |
2022-08-18 | Use default member initialization | David Robillard | 104 | -473/+256 | |
2022-08-18 | Make empty methods and trivial constructors noexcept | David Robillard | 11 | -16/+28 | |
2022-08-18 | Fix control binding value computation | David Robillard | 3 | -7/+8 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 30 | -171/+152 | |
2022-08-18 | Switch to meson build system | David Robillard | 22 | -329/+661 | |
2022-08-18 | Clean up includes | David Robillard | 8 | -4/+13 | |
2022-08-18 | Separate export macro definitions between modules | David Robillard | 16 | -26/+57 | |
2022-08-18 | Fix clang-tidy header filter regex | David Robillard | 2 | -2/+2 | |
2022-08-18 | Clean up includes | David Robillard | 18 | -25/+12 | |
2022-08-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 2 | -0/+30 | |
2022-08-17 | Improve log output | David Robillard | 1 | -1/+3 | |
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 | 9 | -169/+257 | |
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 | |