Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-17 | Use uppercase integer literal suffixes | David Robillard | 1 | -2/+2 | |
2024-07-17 | Avoid C-style casts and some size type conversions | David Robillard | 1 | -5/+6 | |
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-06-04 | Avoid use of "#if 0" as a supercomment | David Robillard | 1 | -1/+3 | |
Mainly because clang-tidy complains about it. | |||||
2023-09-23 | Clean up includes and forward declarations | David Robillard | 1 | -1/+0 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 1 | -18/+18 | |
2022-08-18 | Use consistent spacing for line comments | David Robillard | 1 | -3/+3 | |
2022-08-18 | Use consistent brace wrapping for class definitions | David Robillard | 1 | -1/+2 | |
2022-08-18 | Use a consistent style for FOREACH macros | David Robillard | 1 | -2/+2 | |
2022-08-18 | Avoid "else" after "return", "break", and "continue" | David Robillard | 1 | -1/+3 | |
2022-08-18 | Use default member initialization | David Robillard | 1 | -12/+6 | |
2021-06-04 | Switch to C++14 and fix build with GCC 10 | David Robillard | 1 | -2/+2 | |
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-01-02 | Update for latest raul | David Robillard | 1 | -10/+10 | |
2020-12-15 | Clean up includes in core and server | David Robillard | 1 | -13/+16 | |
2020-12-14 | Avoid "using namespace" | David Robillard | 1 | -28/+22 | |
2020-08-02 | Remove std::shared_ptr alias | David Robillard | 1 | -9/+10 | |
2020-08-02 | Remove redundant pointer get() calls | David Robillard | 1 | -2/+2 | |
2020-08-02 | Use nullptr for empty smart pointers | David Robillard | 1 | -2/+2 | |
2020-08-02 | Use auto with pointer casts to remove redundancy | David Robillard | 1 | -9/+9 | |
2020-08-02 | Remove std::unique_ptr alias | David Robillard | 1 | -7/+7 | |
2020-08-02 | Rename memory utility header | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use default member initialization | David Robillard | 1 | -10/+3 | |
2020-08-02 | Fix implicit constructor | David Robillard | 1 | -1/+1 | |
2020-08-02 | Use consistent naming for context parameters | David Robillard | 1 | -10/+10 | |
2020-08-02 | Remove wrappers for standard memory functions | David Robillard | 1 | -5/+5 | |
2020-08-02 | Fix uninitialized variables | David Robillard | 1 | -3/+3 | |
2020-08-02 | Fix uninitialized members | David Robillard | 1 | -0/+1 | |
2020-08-02 | Use auto with casts and allocations to remove redundancy | David Robillard | 1 | -20/+17 | |
2020-08-02 | Make member functions const or static where possible | David Robillard | 1 | -1/+1 | |
2020-08-02 | Fix include order | David Robillard | 1 | -1/+0 | |
2020-08-01 | Use modern casts | David Robillard | 1 | -44/+68 | |
2020-07-18 | Remove unused macros | David Robillard | 1 | -3/+0 | |
2019-12-08 | Cleanup: Avoid parameter copying overhead | David Robillard | 1 | -1/+1 | |
2019-12-08 | Cleanup: Use "using" instead of "typedef" where appropriate | David Robillard | 1 | -2/+2 | |
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 | 1 | -22/+44 | |
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 | 1 | -5/+4 | |
2019-03-08 | Pass World everywhere by reference | David Robillard | 1 | -21/+19 | |
2019-03-08 | Make parser take mandatory arguments by reference | David Robillard | 1 | -3/+3 | |
2018-09-23 | Use override specifiers | David Robillard | 1 | -22/+20 | |
2018-09-23 | Use lowercase namespace names | David Robillard | 1 | -26/+26 | |
2018-09-22 | Use new LV2 include paths | David Robillard | 1 | -8/+8 | |
2018-01-21 | Add URI class and remove use of Raul::URI | David Robillard | 1 | -7/+7 | |
2018-01-17 | Clean up Engine component memory management and trim include tree | David Robillard | 1 | -13/+11 | |
2017-12-25 | Use auto for iterators | David Robillard | 1 | -1/+1 | |
2017-12-25 | Use std::move to potentially avoid copying | David Robillard | 1 | -3/+3 | |
2017-12-25 | Use nullptr | David Robillard | 1 | -26/+26 | |
2017-03-18 | Don't delete existing graph contents on LV2 restore | David Robillard | 1 | -0/+2 | |
2017-03-18 | Fix LV2 ports | David Robillard | 1 | -0/+7 | |
2017-02-18 | Improve parallel analysis and execution algorithms | David Robillard | 1 | -3/+3 | |