summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2021-03-15Fix clashing blank nodes with MIDI bindingsDavid Robillard1-1/+1
This uses a different namespace for arc blank node IDs, which avoids clashes with MIDI bindings which are written with IDs like "b1", "b2", and so on. This is a symptom of a deeper issue where blank node generation isn't coordinated properly, but this fix avoids the problem for now and is nice anyway since it makes the role of blank nodes clearer when debugging.
2021-01-02Pass by value and use std::moveDavid Robillard8-17/+15
2021-01-02Update for latest raulDavid Robillard111-490/+502
2020-12-15Use separate clang-tidy configurations for server and GUIDavid Robillard2-0/+124
2020-12-15Clean up includes in guiDavid Robillard61-237/+900
2020-12-15Fix include guardDavid Robillard1-3/+3
2020-12-15Clean up includes in client libraryDavid Robillard8-10/+55
2020-12-15Clean up includes in core and serverDavid Robillard67-73/+267
2020-12-14Enable clang-analyzer-webkit.NoUncountedMemberCheckerDavid Robillard1-2/+5
2020-12-14Use emplace_back()David Robillard1-2/+2
2020-12-14Fix unnecessary parameter copying overheadDavid Robillard28-140/+163
2020-12-14Don't check for null before deleting pointerDavid Robillard1-4/+5
2020-12-14Fix redundant calls to smart pointer get() methodsDavid Robillard2-2/+2
2020-12-14Don't use size() to check emptinessDavid Robillard1-1/+1
2020-12-14Fix inconsistent parameter nameDavid Robillard1-1/+1
2020-12-14Isolate and initialize variable declarationsDavid Robillard2-2/+4
2020-12-14Use range-based loops for module portsDavid Robillard2-10/+10
2020-12-14Use "auto" to avoid redundancyDavid Robillard5-22/+25
2020-12-14Avoid "using namespace"David Robillard26-144/+174
2020-12-14Fix include orderDavid Robillard2-3/+3
2020-12-14Remove Jack session supportDavid Robillard2-67/+0
2020-11-12Remove spurious semicolonDavid Robillard1-1/+1
2020-11-11Fix potential state memory leaksDavid Robillard7-52/+101
2020-11-11Fix memory leak on saveDavid Robillard1-0/+2
2020-11-11Fix buffer memory leaks on shutdownDavid Robillard1-4/+8
2020-11-11Fix memory leakDavid Robillard1-0/+2
2020-09-27Fix include orderDavid Robillard1-4/+4
2020-08-03Clean up includesDavid Robillard78-82/+519
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check.
2020-08-02Remove Raul::managed_ptr aliasDavid Robillard26-198/+199
2020-08-02Remove std::shared_ptr aliasDavid Robillard139-977/+1125
2020-08-02Remove redundant pointer get() callsDavid Robillard10-21/+20
2020-08-02Use nullptr for empty smart pointersDavid Robillard19-32/+31
2020-08-02Use auto with pointer casts to remove redundancyDavid Robillard17-71/+71
2020-08-02Remove std::unique_ptr aliasDavid Robillard16-107/+124
2020-08-02Remove std::weak_ptr aliasDavid Robillard5-9/+12
2020-08-02Rename memory utility headerDavid Robillard46-46/+46
2020-08-02Fix implicit-fallthrough warningsDavid Robillard5-1/+7
2020-08-02Fix shadow warningsDavid Robillard20-81/+78
2020-08-02Add missing constDavid Robillard1-3/+3
2020-08-02Clean up URI map interfaceDavid Robillard12-38/+37
2020-08-02Remove support for ancient compilers without thread_local supportDavid Robillard3-12/+4
2020-08-02Fix double-promotion warningsDavid Robillard11-34/+17
2020-08-02Fix return-std-move-in-c++11 warningDavid Robillard2-4/+4
2020-08-02Fix build as a subprojectDavid Robillard4-8/+8
2020-08-02Add missing override specifiersDavid Robillard21-22/+23
2020-08-02Fix self-assignmentDavid Robillard1-4/+6
2020-08-02Make move operators noexceptDavid Robillard1-2/+2
2020-08-02Remove unnecessary moveDavid Robillard1-1/+1
2020-08-02Fix whitespaceDavid Robillard1-2/+1
2020-08-02Add missing bracesDavid Robillard2-2/+4