Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-08-02 | Fix suppressed automatic moves | David Robillard | 1 | -1/+1 | |
2020-08-02 | Make member functions const or static where possible | David Robillard | 9 | -18/+16 | |
2020-08-02 | Use type-appropriate math functions | David Robillard | 1 | -2/+2 | |
2020-08-02 | Fix include order | David Robillard | 5 | -6/+7 | |
2020-08-01 | Use modern casts | David Robillard | 38 | -196/+272 | |
2020-08-01 | Add explicit accessors to Quark | David Robillard | 8 | -9/+13 | |
2020-08-01 | Remove superfluous semicolons | David Robillard | 1 | -1/+1 | |
2020-07-18 | Add missing const specifiers | David Robillard | 3 | -3/+3 | |
2020-07-18 | Remove unused macros | David Robillard | 2 | -5/+0 | |
2020-07-18 | Fix incorrect format specifiers | David Robillard | 1 | -1/+1 | |
2020-02-26 | Fix atomic bundle execution | David Robillard | 4 | -5/+26 | |
2019-12-08 | Fix use of virtual functions in destructors | David Robillard | 10 | -13/+19 | |
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: Use emplace_back | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Fix potential memory leak | David Robillard | 1 | -0/+1 | |
2019-12-08 | Cleanup: Fix potential null dereferences | David Robillard | 1 | -7/+12 | |
2019-12-08 | Cleanup: Remove potentially redundant store | David Robillard | 1 | -6/+4 | |
2019-12-08 | Cleanup: Set up engine RNG with a distinct seed | David Robillard | 1 | -1/+1 | |
From a clang-tidy warning. This almost certainly doesn't matter, but since it's used for monitor event timing, it could spread the load a little better if multiple engines are used in the same process. | |||||
2019-12-08 | Cleanup: Add missing namespace comment | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Make single argument constructors explicit | David Robillard | 4 | -10/+10 | |
2019-12-08 | Cleanup: Remove multiple variable declarations on a single line | David Robillard | 2 | -4/+11 | |
2019-12-08 | Cleanup: Use brace initialisation to avoid repeating return type | David Robillard | 1 | -5/+5 | |
2019-12-08 | Cleanup: Remove unnecessary numeric conversions | David Robillard | 1 | -2/+2 | |
2019-12-08 | Cleanup: Add missing explicit initialisations | David Robillard | 5 | -7/+10 | |
2019-12-08 | Cleanup: Merge branches with identical bodies | David Robillard | 2 | -6/+3 | |
2019-12-08 | Cleanup: Remove unused parameter names | David Robillard | 20 | -42/+37 | |
2019-12-08 | Cleanup: Remove meaningless const qualifiers | David Robillard | 5 | -6/+6 | |
2019-12-08 | Cleanup: Make methods static where possible | David Robillard | 4 | -11/+14 | |
2019-12-08 | Cleanup: Use "default" for default constructors and destructors | David Robillard | 4 | -10/+3 | |
2019-12-08 | Cleanup: Use faster char overload of find_last_of() | David Robillard | 2 | -2/+2 | |
2019-12-08 | Cleanup: Use "auto" to avoid repeating type names | David Robillard | 15 | -69/+68 | |
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 42 | -172/+183 | |
2019-12-08 | Cleanup: Use range-based for loops | David Robillard | 1 | -16/+16 | |
2019-12-08 | Cleanup: Use "using" instead of "typedef" where appropriate | David Robillard | 27 | -51/+50 | |
2019-12-08 | Cleanup: Use std::make_shared | David Robillard | 3 | -3/+3 | |
2019-12-08 | Cleanup: Fix some includes and forward declarations | David Robillard | 12 | -9/+38 | |
2019-12-08 | Cleanup: Format Python code to be mostly flake8 clean | David Robillard | 1 | -43/+43 | |
2019-11-10 | Fix passing NaN to control ports with no default value | David Robillard | 1 | -3/+10 | |
2019-04-21 | Switch to using a submodule for autowaf | David Robillard | 1 | -5/+6 | |
2019-04-13 | Clean up symbol table | David Robillard | 3 | -6/+8 | |
2019-03-09 | Make start_to_file() take a FilePath for type safety | David Robillard | 2 | -2/+4 | |
2019-03-09 | Clean up includes and forward declarations | David Robillard | 112 | -613/+884 | |
2019-03-09 | Localise dependency on boost::format and improve logging API | David Robillard | 10 | -56/+54 | |
2019-03-09 | Use smart pointers over manual memory management | David Robillard | 18 | -119/+88 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 34 | -220/+215 | |
2019-03-08 | Make parser take mandatory arguments by reference | David Robillard | 2 | -4/+4 | |
2018-09-29 | Use nullptr | David Robillard | 6 | -12/+18 | |
2018-09-23 | Enforce that arc buffer can only be accessed in run context | David Robillard | 3 | -6/+6 | |
2018-09-23 | Instantiate duplicated internals with correct parent graph | David Robillard | 1 | -1/+1 | |
2018-09-23 | Use override specifiers | David Robillard | 43 | -235/+243 | |