summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2024-03-14Fix library current_version on MacOSHEADmasterDavid Robillard1-0/+1
2023-09-23Clean up meson definitionsDavid Robillard3-60/+76
2023-09-23Clean up includes and forward declarationsDavid Robillard74-73/+84
2023-09-22Suppress new warnings in clang-tidy 16David Robillard1-0/+1
2023-09-22Avoid potential null dereferencesDavid Robillard2-3/+10
2023-09-22Use a regular unique_ptr for compiled graphsDavid Robillard23-70/+53
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-08-23Suppress clang-tidy header guard warnings in private codeDavid Robillard1-0/+1
2023-08-23Simplify conditionalDavid Robillard1-1/+1
2023-08-23Add missing const qualifiersDavid Robillard3-4/+4
2023-08-23Fix build with GCC 13David Robillard1-2/+2
2023-07-02Fix potentially dangling referenceDavid Robillard1-1/+1
2023-05-12Fix const correctnessDavid Robillard1-1/+1
2023-05-12Suppress new clang-tidy warningsDavid Robillard1-0/+1
2023-05-12Clean up includesDavid Robillard1-1/+1
2023-05-02Fix relative URI creation with newer serdDavid Robillard2-1/+11
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard61-257/+260
2023-01-14Fix and simplify library naming on WindowsDavid Robillard1-1/+2
2022-12-14Strengthen clang-tidy configurationDavid Robillard2-0/+2
2022-12-14Avoid implicit conversionsDavid Robillard2-5/+7
2022-12-14Avoid use of std::bindDavid Robillard2-6/+4
2022-12-14Avoid public member variables in classesDavid Robillard1-3/+3
2022-12-14Concatenate nested namespacesDavid Robillard111-477/+223
2022-12-14Use std::variantDavid Robillard7-20/+18
2022-12-14Use std::optionalDavid Robillard15-274/+289
2022-12-14Use std::filesystem and std::make_uniqueDavid Robillard12-267/+27
2022-12-14Clean up includesDavid Robillard3-2/+4
2022-11-15Remove unused includeDavid Robillard1-1/+0
2022-09-27Pass by value and use std::moveDavid Robillard2-3/+3
2022-09-27Use braced init lists to avoid repeating return typesDavid Robillard14-28/+28
2022-09-27Use std::make_uniqueDavid Robillard5-7/+7
2022-09-27Fix implicit integer conversionsDavid Robillard3-13/+20
2022-09-27Fix field shadowingDavid Robillard2-18/+19
2022-09-27Avoid nullable to nonnull conversionsDavid Robillard2-2/+2
2022-09-27Simplify clang-tidy configurationDavid Robillard5-105/+37
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard4-4/+4
Fedora takes issue with CC0. Although it doesn't really matter for this stuff (dual licensed anyway, questionably "software", certainly not patentable, and so on), this is simpler and more consistent with the ISC license used for the actual software anyway.
2022-09-08Make learned MIDI bindings channel specificLoki Davison2-7/+38
2022-08-18Fix whitespaceDavid Robillard1-2/+1
2022-08-18Clean up special member functionsDavid Robillard2-2/+0
2022-08-18Avoid using "static inline" for functions in headersDavid Robillard1-3/+3
2022-08-18Use "static inline" consistently over "inline static"David Robillard2-2/+2
2022-08-18Remove redundant "inline" specifiersDavid Robillard17-96/+100
2022-08-18Use consistent spacing for line commentsDavid Robillard32-67/+70
2022-08-18Use consistent brace wrapping for namespacesDavid Robillard14-14/+42
2022-08-18Use consistent brace wrapping for class definitionsDavid Robillard19-23/+42
2022-08-18Use consistent brace wrapping for struct definitionsDavid Robillard6-12/+6
2022-08-18Fix overly long line commentsDavid Robillard4-7/+7
2022-08-18Use a consistent style for FOREACH macrosDavid Robillard18-33/+33
2022-08-18Use a consistent style for empty bracesDavid Robillard27-75/+39
2022-08-18Fix include orderDavid Robillard11-11/+21
2022-08-18Clean up path constructionDavid Robillard4-7/+6