Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-08-18 | Fix overly long line comments | David Robillard | 1 | -1/+1 | |
2022-08-18 | Use a consistent style for empty braces | David Robillard | 8 | -20/+10 | |
2022-08-18 | Fix include order | David Robillard | 1 | -1/+2 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 7 | -27/+59 | |
2022-08-18 | Use default member initialization | David Robillard | 18 | -55/+21 | |
2022-08-18 | Use auto when declaring iterators | David Robillard | 8 | -33/+24 | |
2022-08-18 | Clean up includes | David Robillard | 3 | -4/+3 | |
2021-06-04 | Switch to C++14 and fix build with GCC 10 | David Robillard | 4 | -34/+46 | |
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 | 6 | -9/+9 | |
2021-01-02 | Update for latest raul | David Robillard | 15 | -42/+42 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 17 | -9/+53 | |
2020-11-11 | Fix potential state memory leaks | David Robillard | 3 | -8/+11 | |
2020-08-03 | Clean up includes | David Robillard | 28 | -30/+227 | |
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 | 12 | -89/+89 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 28 | -229/+270 | |
2020-08-02 | Remove redundant pointer get() calls | David Robillard | 2 | -2/+2 | |
2020-08-02 | Use auto with pointer casts to remove redundancy | David Robillard | 1 | -1/+1 | |
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 6 | -25/+33 | |
2020-08-02 | Rename memory utility header | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix implicit-fallthrough warnings | David Robillard | 1 | -0/+1 | |
2020-08-02 | Fix shadow warnings | David Robillard | 1 | -5/+4 | |
2020-08-02 | Add missing override specifiers | David Robillard | 3 | -3/+3 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 26 | -58/+63 | |
2020-08-02 | Use std::make_shared | David Robillard | 1 | -0/+1 | |
2020-08-02 | Remove wrappers for standard memory functions | David Robillard | 2 | -4/+6 | |
2020-08-01 | Use modern casts | David Robillard | 4 | -7/+7 | |
2020-08-01 | Add explicit accessors to Quark | David Robillard | 1 | -1/+1 | |
2020-02-26 | Fix atomic bundle execution | David Robillard | 2 | -5/+22 | |
2019-12-08 | Cleanup: Work around clang-tidy bug | David Robillard | 1 | -3/+3 | |
For some reason clang-tidy thinks that insert can modify the value of tail_block, so this triggers a null dereference warning. If that were true, it would be true with things swapped around like this as well, but it makes the warning go away at least. | |||||
2019-12-08 | Cleanup: Fix potential null dereferences | David Robillard | 1 | -7/+12 | |
2019-12-08 | Cleanup: Remove multiple variable declarations on a single line | David Robillard | 1 | -1/+5 | |
2019-12-08 | Cleanup: Merge branches with identical bodies | David Robillard | 2 | -6/+3 | |
2019-12-08 | Cleanup: Remove unused parameter names | David Robillard | 7 | -9/+9 | |
2019-12-08 | Cleanup: Use "default" for default constructors and destructors | David Robillard | 2 | -5/+1 | |
2019-12-08 | Cleanup: Use "auto" to avoid repeating type names | David Robillard | 3 | -15/+15 | |
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 28 | -136/+136 | |
2019-12-08 | Cleanup: Use "using" instead of "typedef" where appropriate | David Robillard | 6 | -8/+8 | |
2019-12-08 | Cleanup: Use std::make_shared | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Fix some includes and forward declarations | David Robillard | 1 | -1/+1 | |
2019-03-09 | Make start_to_file() take a FilePath for type safety | David Robillard | 1 | -1/+2 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 27 | -138/+180 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 1 | -2/+2 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 8 | -67/+43 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 8 | -31/+31 | |
2019-03-08 | Make parser take mandatory arguments by reference | David Robillard | 1 | -1/+1 | |
2018-09-29 | Use nullptr | David Robillard | 1 | -2/+2 | |
2018-09-23 | Use override specifiers | David Robillard | 14 | -54/+54 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 28 | -222/+222 | |