Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-13 | Add missing includes | David Robillard | 1 | -0/+1 | |
According to include-what-you-use, anyway. Most of these seem questionable/unnecessary, but since the whole point here is to avoid wasting time doing manually what machines can do, just do what the tool says to keep the checks clean even if it's suboptimal. | |||||
2023-09-22 | Use a regular unique_ptr for compiled graphs | David Robillard | 1 | -4/+3 | |
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 | 1 | -1/+1 | |
2022-12-14 | Concatenate nested namespaces | David Robillard | 1 | -4/+2 | |
2022-09-27 | Use std::make_unique | David Robillard | 1 | -1/+2 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 1 | -1/+2 | |
2021-01-02 | Update for latest raul | David Robillard | 1 | -2/+2 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 1 | -0/+3 | |
2020-08-03 | Clean up includes | David Robillard | 1 | -0/+2 | |
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 | 1 | -2/+2 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 1 | -0/+1 | |
2020-08-02 | Use nullptr for empty smart pointers | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix shadow warnings | David Robillard | 1 | -5/+8 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 1 | -2/+2 | |
2020-08-02 | Use auto with casts and allocations to remove redundancy | David Robillard | 1 | -12/+12 | |
2019-12-08 | Cleanup: Make single argument constructors explicit | David Robillard | 1 | -3/+3 | |
2019-12-08 | Cleanup: Fix some includes and forward declarations | David Robillard | 1 | -0/+2 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 1 | -5/+10 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 1 | -4/+3 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 1 | -1/+1 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -4/+4 | |
2018-09-04 | Fix catch of polymorphic exception by value | David Robillard | 1 | -1/+1 | |
2018-01-16 | Add missing includes | David Robillard | 1 | -0/+1 | |
2018-01-16 | Fix build with C++11 | David Robillard | 1 | -1/+1 | |
2017-12-25 | Use nullptr | David Robillard | 1 | -1/+1 | |
2017-12-18 | Fix recursive type issues with some toolchains | David Robillard | 1 | -4/+4 | |
2017-12-16 | Remove Log and Path dependency from CompiledGraph | David Robillard | 1 | -9/+9 | |
2017-12-16 | Simplify Task implementation | David Robillard | 1 | -4/+4 | |
2017-02-18 | Improve parallel analysis and execution algorithms | David Robillard | 1 | -72/+108 | |
2017-02-12 | Use smart pointers to handle real-time memory disposal | David Robillard | 1 | -5/+5 | |
2016-10-02 | Add parallel graph execution | David Robillard | 1 | -86/+12 | |
2016-10-02 | Add parallelism-aware graph traversal | David Robillard | 1 | -0/+311 | |