DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 8a760ef11159f1b7d0be3fef4a05c91d74318860
parent d0179ed3080f3bf7d8b8098bf09e2a0e4d9bb295
Author: falkTX <falktx@gmail.com>
Date:   Fri, 18 Sep 2015 11:32:29 +0200

Always maps URIDs, it's a required feature anyway

Diffstat:
Mdistrho/src/DistrhoPluginLV2.cpp | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/distrho/src/DistrhoPluginLV2.cpp b/distrho/src/DistrhoPluginLV2.cpp @@ -57,9 +57,7 @@ public: fPortControls(nullptr), fLastControlValues(nullptr), fSampleRate(sampleRate), -#if DISTRHO_LV2_USE_EVENTS_IN || DISTRHO_LV2_USE_EVENTS_OUT fURIDs(uridMap), -#endif fUridMap(uridMap), fWorker(worker) { @@ -881,7 +879,6 @@ private: #endif // LV2 URIDs -#if DISTRHO_LV2_USE_EVENTS_IN || DISTRHO_LV2_USE_EVENTS_OUT struct URIDs { LV2_URID atomBlank; LV2_URID atomObject; @@ -924,7 +921,6 @@ private: timeFrame(uridMap->map(uridMap->handle, LV2_TIME__frame)), timeSpeed(uridMap->map(uridMap->handle, LV2_TIME__speed)) {} } fURIDs; -#endif // LV2 features const LV2_URID_Map* const fUridMap;