summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard55-268/+449
2022-08-18Use default member initializationDavid Robillard104-473/+256
2022-08-18Make empty methods and trivial constructors noexceptDavid Robillard11-16/+28
2022-08-18Fix control binding value computationDavid Robillard3-7/+8
2022-08-18Use auto when declaring iteratorsDavid Robillard30-171/+152
2022-08-18Switch to meson build systemDavid Robillard22-329/+661
2022-08-18Clean up includesDavid Robillard8-4/+13
2022-08-18Separate export macro definitions between modulesDavid Robillard16-26/+57
2022-08-18Fix clang-tidy header filter regexDavid Robillard2-2/+2
2022-08-18Clean up includesDavid Robillard18-25/+12
2022-08-17Suppress new warnings in clang-tidy 14David Robillard2-0/+30
2022-08-17Improve log outputDavid Robillard1-1/+3
2022-05-27Fix build on systems without SSEDavid Robillard1-1/+1
2021-06-04Switch to C++14 and fix build with GCC 10David Robillard9-169/+257
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-04-01Fix deleting connected ports in subgraphsDavid Robillard2-1/+13
2021-04-01Factor out finding adjacent arcs for disconnectionDavid Robillard2-22/+32
2021-04-01Fix invalid URI mapping when a property range is a blank nodeDavid Robillard1-1/+3
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