diff options
author | David Robillard <d@drobilla.net> | 2016-08-01 13:01:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-08-01 13:01:42 -0400 |
commit | 1a4e4a79991932714e39ef44b9f5ba1ca4c6c251 (patch) | |
tree | e1dc0adab0728aef11c6668e7aefdd643fdd05b7 /ingen/LV2Features.hpp | |
parent | 902703efa9425a0630053c10229de911e23a2a43 (diff) | |
download | ingen-1a4e4a79991932714e39ef44b9f5ba1ca4c6c251.tar.gz ingen-1a4e4a79991932714e39ef44b9f5ba1ca4c6c251.tar.bz2 ingen-1a4e4a79991932714e39ef44b9f5ba1ca4c6c251.zip |
Fix compilation on OSX
Diffstat (limited to 'ingen/LV2Features.hpp')
-rw-r--r-- | ingen/LV2Features.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ingen/LV2Features.hpp b/ingen/LV2Features.hpp index 2fe71f11..5c1a0240 100644 --- a/ingen/LV2Features.hpp +++ b/ingen/LV2Features.hpp @@ -47,10 +47,7 @@ public: Node* block) = 0; protected: - static void free_feature(LV2_Feature* feature) { - free(feature->data); - free(feature); - } + static void free_feature(LV2_Feature* feature); }; class EmptyFeature : public Feature { |