Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 15 | -89/+106 | |
2020-08-02 | Rename memory utility header | David Robillard | 20 | -20/+20 | |
2020-08-02 | Fix implicit-fallthrough warnings | David Robillard | 4 | -1/+6 | |
2020-08-02 | Fix shadow warnings | David Robillard | 9 | -33/+39 | |
2020-08-02 | Clean up URI map interface | David Robillard | 4 | -14/+12 | |
2020-08-02 | Remove support for ancient compilers without thread_local support | David Robillard | 3 | -12/+4 | |
2020-08-02 | Fix double-promotion warnings | David Robillard | 5 | -24/+4 | |
2020-08-02 | Fix return-std-move-in-c++11 warning | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix build as a subproject | David Robillard | 1 | -4/+4 | |
2020-08-02 | Add missing override specifiers | David Robillard | 14 | -15/+15 | |
2020-08-02 | Fix self-assignment | David Robillard | 1 | -4/+6 | |
2020-08-02 | Make move operators noexcept | David Robillard | 1 | -2/+2 | |
2020-08-02 | Remove unnecessary move | David Robillard | 1 | -1/+1 | |
2020-08-02 | Move public headers to a separate include directory | David Robillard | 1 | -5/+5 | |
This is more conventional and probably best practice (since it avoids polluting the include path with non-headers), and is supported by the clang-tidy llvm-header-guard check. | |||||
2020-08-02 | Remove stale forward declarations | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use "using" over "typedef" | David Robillard | 2 | -2/+2 | |
2020-08-02 | Clean up namespace comments | David Robillard | 8 | -9/+9 | |
2020-08-02 | Use explicit default for trivial constructors | David Robillard | 3 | -9/+9 | |
2020-08-02 | Use default member initialization | David Robillard | 5 | -30/+18 | |
2020-08-02 | Fix implicit constructor | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 73 | -437/+443 | |
2020-08-02 | Use std::make_shared | David Robillard | 2 | -0/+2 | |
2020-08-02 | Remove wrappers for standard memory functions | David Robillard | 9 | -14/+36 | |
2020-08-02 | Fix uninitialized variables | David Robillard | 6 | -10/+10 | |
2020-08-02 | Fix uninitialized members | David Robillard | 5 | -10/+16 | |
2020-08-02 | Don't access static methods through instances | David Robillard | 1 | -2/+1 | |
2020-08-02 | Use standard C++ includes | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use auto with casts and allocations to remove redundancy | David Robillard | 15 | -69/+73 | |
2020-08-02 | Fix unnecessary parameter copies | David Robillard | 4 | -16/+17 | |
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 | |