summaryrefslogtreecommitdiffstats
path: root/src/server
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Clean up meson definitionsDavid Robillard1-19/+19
2023-09-23Clean up includes and forward declarationsDavid Robillard28-26/+39
2023-09-22Suppress new warnings in clang-tidy 16David Robillard1-0/+1
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-08-23Simplify conditionalDavid Robillard1-1/+1
2023-07-02Fix potentially dangling referenceDavid Robillard1-1/+1
2023-05-12Fix const correctnessDavid Robillard1-1/+1
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard25-94/+95
2022-12-14Strengthen clang-tidy configurationDavid Robillard1-0/+1
2022-12-14Concatenate nested namespacesDavid Robillard80-350/+162
2022-12-14Use std::variantDavid Robillard1-2/+2
2022-12-14Use std::optionalDavid Robillard6-20/+19
2022-12-14Use std::filesystem and std::make_uniqueDavid Robillard4-3/+6
2022-12-14Clean up includesDavid Robillard3-2/+4
2022-11-15Remove unused includeDavid Robillard1-1/+0
2022-09-27Pass by value and use std::moveDavid Robillard2-3/+3
2022-09-27Use braced init lists to avoid repeating return typesDavid Robillard6-10/+10
2022-09-27Use std::make_uniqueDavid Robillard4-5/+6
2022-09-27Fix implicit integer conversionsDavid Robillard2-12/+19
2022-09-27Fix field shadowingDavid Robillard1-7/+7
2022-09-27Avoid nullable to nonnull conversionsDavid Robillard1-1/+1
2022-09-27Simplify clang-tidy configurationDavid Robillard1-51/+1
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard1-1/+1
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 Davison1-7/+37
2022-08-18Fix whitespaceDavid Robillard1-2/+1
2022-08-18Clean up special member functionsDavid Robillard1-1/+0
2022-08-18Remove redundant "inline" specifiersDavid Robillard16-93/+97
2022-08-18Use consistent spacing for line commentsDavid Robillard20-46/+49
2022-08-18Use consistent brace wrapping for namespacesDavid Robillard6-6/+18
2022-08-18Use consistent brace wrapping for class definitionsDavid Robillard15-18/+32
2022-08-18Use consistent brace wrapping for struct definitionsDavid Robillard4-8/+4
2022-08-18Fix overly long line commentsDavid Robillard2-2/+2
2022-08-18Use a consistent style for FOREACH macrosDavid Robillard11-19/+19
2022-08-18Use a consistent style for empty bracesDavid Robillard18-49/+26
2022-08-18Fix include orderDavid Robillard4-4/+7
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard27-88/+178
2022-08-18Use default member initializationDavid Robillard60-243/+120
2022-08-18Make empty methods and trivial constructors noexceptDavid Robillard10-15/+25
2022-08-18Fix control binding value computationDavid Robillard2-6/+8
2022-08-18Use auto when declaring iteratorsDavid Robillard12-37/+27
2022-08-18Switch to meson build systemDavid Robillard5-113/+143
2022-08-18Clean up includesDavid Robillard3-0/+7
2022-08-18Separate export macro definitions between modulesDavid Robillard14-24/+55
2022-08-18Fix clang-tidy header filter regexDavid Robillard1-1/+1
2022-08-18Clean up includesDavid Robillard10-18/+10
2022-08-17Suppress new warnings in clang-tidy 14David Robillard1-0/+17
2022-05-27Fix build on systems without SSEDavid Robillard1-1/+1
2021-06-04Switch to C++14 and fix build with GCC 10David Robillard7-42/+52
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