summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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-07Update autowafDavid Robillard1-0/+0
2021-01-07Remove deprecated Doxygen configuration valuesDavid Robillard1-22/+1
2021-01-07Fix building documentationDavid Robillard1-4/+1
2021-01-02Pass by value and use std::moveDavid Robillard8-17/+15
2021-01-02Update for latest raulDavid Robillard141-597/+615
2020-12-15Use separate clang-tidy configurations for server and GUIDavid Robillard3-1/+124
2020-12-15Suppress all Android cloexec clang-tidy warningsDavid Robillard1-1/+1
2020-12-15Sort mapping filesDavid Robillard1-2/+2
2020-12-15Clean up includes in guiDavid Robillard62-237/+903
2020-12-15Fix include guardDavid Robillard1-3/+3
2020-12-15Clean up includes in client libraryDavid Robillard16-32/+89
2020-12-15Clean up includes in core and serverDavid Robillard92-95/+346
2020-12-14Enable clang-analyzer-webkit.NoUncountedMemberCheckerDavid Robillard2-3/+5
2020-12-14Use emplace_back()David Robillard2-3/+2
2020-12-14Fix unnecessary parameter copying overheadDavid Robillard29-141/+163
2020-12-14Don't check for null before deleting pointerDavid Robillard2-5/+5
2020-12-14Fix redundant calls to smart pointer get() methodsDavid Robillard4-4/+3
2020-12-14Don't use size() to check emptinessDavid Robillard2-2/+1
2020-12-14Fix inconsistent parameter nameDavid Robillard2-2/+1
2020-12-14Isolate and initialize variable declarationsDavid Robillard3-4/+4
2020-12-14Use range-based loops for module portsDavid Robillard3-11/+10
2020-12-14Use "auto" to avoid redundancyDavid Robillard6-23/+25
2020-12-14Avoid "using namespace"David Robillard29-177/+244
2020-12-14Suppress new clang-tidy warningsDavid Robillard1-8/+35
2020-12-14Fix include orderDavid Robillard2-3/+3
2020-12-14Remove Jack session supportDavid Robillard3-71/+0
2020-11-12Update warning flagsDavid Robillard1-0/+2
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-27Update autowafDavid Robillard1-0/+0
2020-09-27Fix include orderDavid Robillard1-4/+4
2020-08-03Clean up includesDavid Robillard86-88/+535
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-03Move misplaced importDavid Robillard1-1/+1
2020-08-02Remove Raul::managed_ptr aliasDavid Robillard27-203/+199
2020-08-02Remove std::shared_ptr aliasDavid Robillard167-1195/+1365
2020-08-02Remove redundant pointer get() callsDavid Robillard11-22/+21
2020-08-02Use nullptr for empty smart pointersDavid Robillard24-39/+38
2020-08-02Use auto with pointer casts to remove redundancyDavid Robillard17-71/+71
2020-08-02Remove std::unique_ptr aliasDavid Robillard20-114/+131
2020-08-02Remove std::weak_ptr aliasDavid Robillard6-12/+12
2020-08-02Rename memory utility headerDavid Robillard72-75/+75
2020-08-02Strengthen warning flagsDavid Robillard1-3/+0
2020-08-02Fix implicit-fallthrough warningsDavid Robillard6-3/+7