Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-17 | Use uppercase integer literal suffixes | David Robillard | 1 | -1/+1 | |
2024-07-17 | Clean up includes and forward declarations | David Robillard | 5 | -3/+2 | |
According to include-what-you-use 0.22 on LLVM 18, anyway. Most of the changes seem vaguely reasonable, so as usual, just go with what the tool says because it's most useful when reports are typically clean. | |||||
2024-07-17 | Avoid C-style casts and some size type conversions | David Robillard | 2 | -4/+4 | |
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-07-17 | Remove redundant casts | David Robillard | 3 | -5/+4 | |
2024-06-04 | Clean up includes | David Robillard | 1 | -0/+1 | |
2023-09-23 | Clean up includes and forward declarations | David Robillard | 4 | -3/+7 | |
2023-09-22 | Use a regular unique_ptr for compiled graphs | David Robillard | 18 | -43/+33 | |
Since these are always swapped by events which already have the ability to delete things after execution (by deleting them along with the event itself after processing), we can avoid the complexity and overhead of Raul::managed_ptr here by swapping the old graph for the new, retaining the owning reference to the old CompiledGraph in the event. | |||||
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 12 | -25/+25 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 14 | -74/+28 | |
2022-12-14 | Use std::optional | David Robillard | 3 | -12/+9 | |
2022-12-14 | Use std::filesystem and std::make_unique | David Robillard | 3 | -0/+3 | |
2022-12-14 | Clean up includes | David Robillard | 2 | -1/+4 | |
2022-09-27 | Pass by value and use std::move | David Robillard | 2 | -3/+3 | |
2022-08-18 | Remove redundant "inline" specifiers | David Robillard | 1 | -2/+2 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 1 | -4/+4 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 1 | -1/+2 | |
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 | |