summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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 Robillard24-136/+142
2022-08-18Use consistent spacing for line commentsDavid Robillard47-99/+103
2022-08-18Use consistent brace wrapping for namespacesDavid Robillard21-21/+63
2022-08-18Use consistent brace wrapping for class definitionsDavid Robillard35-44/+84
2022-08-18Use consistent brace wrapping for struct definitionsDavid Robillard10-48/+25
2022-08-18Fix overly long line commentsDavid Robillard5-9/+9
2022-08-18Use a consistent style for FOREACH macrosDavid Robillard18-33/+33
2022-08-18Use a consistent style for empty bracesDavid Robillard29-79/+41
2022-08-18Fix include orderDavid Robillard11-11/+21
2022-08-18Clean up path constructionDavid Robillard4-7/+6
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard61-279/+467
2022-08-18Use default member initializationDavid Robillard113-497/+277
2022-08-18Make empty methods and trivial constructors noexceptDavid Robillard17-29/+42
2022-08-18Fix control binding value computationDavid Robillard4-8/+8
2022-08-18Use auto when declaring iteratorsDavid Robillard34-175/+156
2022-08-18Switch to meson build systemDavid Robillard48-872/+2257
2022-08-18Clean up includesDavid Robillard8-4/+13
2022-08-18Separate export macro definitions between modulesDavid Robillard19-41/+102
2022-08-18Remove unused ingen:Option classDavid Robillard1-9/+3
The idea here was so that options can be enumerated, but at the moment, it just complicates the schema for no benefit. So, drop it for now, since it can always be added again later without breaking any data.
2022-08-18Fix clang-tidy header filter regexDavid Robillard3-3/+3
2022-08-18Clean up includesDavid Robillard24-36/+24
2022-08-17Fully declare special member functionsDavid Robillard1-1/+6
2022-08-17Suppress new warnings in clang-tidy 14David Robillard3-0/+43
2022-08-17Use eg-metro in tests instead of eg-samplerDavid Robillard1-3/+3
This plugin doesn't have external dependencies (like libsndfile), so is more likely to be present.
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 Robillard11-177/+258
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-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