summaryrefslogtreecommitdiffstats
path: root/src/server/ingen_lv2.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Clean up includes and forward declarationsDavid Robillard1-1/+0
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard1-18/+18
2022-08-18Use consistent spacing for line commentsDavid Robillard1-3/+3
2022-08-18Use consistent brace wrapping for class definitionsDavid Robillard1-1/+2
2022-08-18Use a consistent style for FOREACH macrosDavid Robillard1-2/+2
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-1/+3
2022-08-18Use default member initializationDavid Robillard1-12/+6
2021-06-04Switch to C++14 and fix build with GCC 10David Robillard1-2/+2
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-01-02Update for latest raulDavid Robillard1-10/+10
2020-12-15Clean up includes in core and serverDavid Robillard1-13/+16
2020-12-14Avoid "using namespace"David Robillard1-28/+22
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-9/+10
2020-08-02Remove redundant pointer get() callsDavid Robillard1-2/+2
2020-08-02Use nullptr for empty smart pointersDavid Robillard1-2/+2
2020-08-02Use auto with pointer casts to remove redundancyDavid Robillard1-9/+9
2020-08-02Remove std::unique_ptr aliasDavid Robillard1-7/+7
2020-08-02Rename memory utility headerDavid Robillard1-1/+1
2020-08-02Use default member initializationDavid Robillard1-10/+3
2020-08-02Fix implicit constructorDavid Robillard1-1/+1
2020-08-02Use consistent naming for context parametersDavid Robillard1-10/+10
2020-08-02Remove wrappers for standard memory functionsDavid Robillard1-5/+5
2020-08-02Fix uninitialized variablesDavid Robillard1-3/+3
2020-08-02Fix uninitialized membersDavid Robillard1-0/+1
2020-08-02Use auto with casts and allocations to remove redundancyDavid Robillard1-20/+17
2020-08-02Make member functions const or static where possibleDavid Robillard1-1/+1
2020-08-02Fix include orderDavid Robillard1-1/+0
2020-08-01Use modern castsDavid Robillard1-44/+68
2020-07-18Remove unused macrosDavid Robillard1-3/+0
2019-12-08Cleanup: Avoid parameter copying overheadDavid Robillard1-1/+1
2019-12-08Cleanup: Use "using" instead of "typedef" where appropriateDavid Robillard1-2/+2
2019-03-09Make start_to_file() take a FilePath for type safetyDavid Robillard1-1/+2
2019-03-09Clean up includes and forward declarationsDavid Robillard1-22/+44
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard1-2/+2
2019-03-09Use smart pointers over manual memory managementDavid Robillard1-5/+4
2019-03-08Pass World everywhere by referenceDavid Robillard1-21/+19
2019-03-08Make parser take mandatory arguments by referenceDavid Robillard1-3/+3
2018-09-23Use override specifiersDavid Robillard1-22/+20
2018-09-23Use lowercase namespace namesDavid Robillard1-26/+26
2018-09-22Use new LV2 include pathsDavid Robillard1-8/+8
2018-01-21Add URI class and remove use of Raul::URIDavid Robillard1-7/+7
2018-01-17Clean up Engine component memory management and trim include treeDavid Robillard1-13/+11
2017-12-25Use auto for iteratorsDavid Robillard1-1/+1
2017-12-25Use std::move to potentially avoid copyingDavid Robillard1-3/+3
2017-12-25Use nullptrDavid Robillard1-26/+26
2017-03-18Don't delete existing graph contents on LV2 restoreDavid Robillard1-0/+2
2017-03-18Fix LV2 portsDavid Robillard1-0/+7
2017-02-18Improve parallel analysis and execution algorithmsDavid Robillard1-3/+3
2017-02-14Fix LV2 host time eventsDavid Robillard1-6/+8
2016-12-14Don't shrink ports arrayDavid Robillard1-3/+0
2016-12-13Fix some real-time safety issuesDavid Robillard1-7/+7