summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2024-03-14Fix library current_version on MacOSHEADmasterDavid Robillard1-0/+1
2023-09-23Clean up meson definitionsDavid Robillard6-116/+126
2023-09-23Avoid const data membersDavid Robillard1-137/+137
2023-09-23Clean up includes and forward declarationsDavid Robillard78-83/+95
2023-09-22Suppress new warnings in clang-tidy 16David Robillard2-0/+4
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-09-22Suppress new warnings in clang 16David Robillard1-0/+2
2023-08-23Suppress clang-tidy header guard warnings in private codeDavid Robillard2-0/+2
2023-08-23Simplify conditionalDavid Robillard1-1/+1
2023-08-23Add missing const qualifiersDavid Robillard3-4/+4
2023-08-23Fix build with GCC 13David Robillard2-4/+4
2023-07-02Update required dependency versionsDavid Robillard1-2/+2
2023-07-02Fix potentially dangling referenceDavid Robillard1-1/+1
2023-05-12Fix const correctnessDavid Robillard6-9/+10
2023-05-12Suppress new clang-tidy warningsDavid Robillard2-0/+5
2023-05-12Fix implicit widening conversionsDavid Robillard2-3/+3
2023-05-12Fix include guardDavid Robillard1-3/+3
2023-05-12Clean up includesDavid Robillard1-1/+1
2023-05-02Replace strict option with new meson warning levelDavid Robillard4-211/+36
2023-05-02Fix relative URI creation with newer serdDavid Robillard3-1/+12
2023-02-03Suppress warnings in LV2 headersDavid Robillard1-22/+37
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard65-270/+274
2023-01-14Fix and simplify library naming on WindowsDavid Robillard3-33/+12
2022-12-14Strengthen clang-tidy configurationDavid Robillard3-5/+2
2022-12-14Avoid implicit conversionsDavid Robillard3-6/+8
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 Robillard116-494/+231
2022-12-14Use std::variantDavid Robillard9-41/+38
2022-12-14Use std::optionalDavid Robillard17-296/+309
2022-12-14Use std::filesystem and std::make_uniqueDavid Robillard20-575/+44
2022-12-14Clean up includesDavid Robillard3-2/+4
2022-12-14Switch to C++17David Robillard1-1/+1
2022-12-13Avoid throwing exceptions from main()David Robillard1-5/+10
2022-11-15Remove unused includeDavid Robillard1-1/+0
2022-11-15Fix clang-tidy configurationDavid Robillard1-1/+0
2022-09-27Pass by value and use std::moveDavid Robillard3-4/+3
2022-09-27Use braced init lists to avoid repeating return typesDavid Robillard19-46/+44
2022-09-27Use std::make_uniqueDavid Robillard8-11/+9
2022-09-27Fix implicit integer conversionsDavid Robillard4-14/+20
2022-09-27Fix field shadowingDavid Robillard4-22/+22
2022-09-27Avoid nullable to nonnull conversionsDavid Robillard3-3/+2
2022-09-27Simplify clang-tidy configurationDavid Robillard7-154/+60
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard13-13/+13
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 Davison3-7/+39
2022-08-22Update INSTALL.md for mesonDavid Robillard2-59/+74
2022-08-18Fix whitespaceDavid Robillard3-5/+11
2022-08-18Clean up special member functionsDavid Robillard5-4/+8
2022-08-18Fix indentationDavid Robillard1-8/+8