diff options
author | David Robillard <d@drobilla.net> | 2020-07-15 17:21:11 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-16 23:37:49 +0200 |
commit | 3138cadd2e60eabb16822994c281ef4b73832d91 (patch) | |
tree | e3523f30476ec2fcd0cd972a8e17acd356fa704a | |
parent | 133de18003a7fe1d7ab4b88beeeef413d1eb28ac (diff) | |
download | lilv-3138cadd2e60eabb16822994c281ef4b73832d91.tar.gz lilv-3138cadd2e60eabb16822994c281ef4b73832d91.tar.bz2 lilv-3138cadd2e60eabb16822994c281ef4b73832d91.zip |
Remove unnecessary defines
-rw-r--r-- | src/plugin.c | 2 | ||||
-rw-r--r-- | test/failed_lib_descriptor.lv2/failed_lib_descriptor.c | 2 | ||||
-rw-r--r-- | test/missing_plugin.lv2/missing_plugin.c | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/plugin.c b/src/plugin.c index 9da448b..0924109 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -14,8 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define __STDC_LIMIT_MACROS - #include "lilv_config.h" #include "lilv_internal.h" diff --git a/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c b/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c index f664aa4..e24c8d9 100644 --- a/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c +++ b/test/failed_lib_descriptor.lv2/failed_lib_descriptor.c @@ -19,8 +19,6 @@ #include <stdlib.h> -#define PLUGIN_URI "http://example.org/failed-lib-descriptor" - LV2_SYMBOL_EXPORT const LV2_Lib_Descriptor* lv2_lib_descriptor(const char* bundle_path, diff --git a/test/missing_plugin.lv2/missing_plugin.c b/test/missing_plugin.lv2/missing_plugin.c index 848ab94..bf45cbe 100644 --- a/test/missing_plugin.lv2/missing_plugin.c +++ b/test/missing_plugin.lv2/missing_plugin.c @@ -20,8 +20,6 @@ #include <stdint.h> #include <stdlib.h> -#define PLUGIN_URI "http://example.org/missing-plugin" - static const LV2_Descriptor descriptor = { "http://example.org/not-the-plugin-you-are-looking-for", NULL, |