aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/core/attributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/core/attributes.h')
-rw-r--r--lv2/core/attributes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lv2/core/attributes.h b/lv2/core/attributes.h
index dfcff3a..81791a2 100644
--- a/lv2/core/attributes.h
+++ b/lv2/core/attributes.h
@@ -35,11 +35,11 @@
#if defined(__clang__)
# define LV2_DISABLE_DEPRECATION_WARNINGS \
_Pragma("clang diagnostic push") \
- _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
+ _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
#elif defined(__GNUC__) && __GNUC__ > 4
# define LV2_DISABLE_DEPRECATION_WARNINGS \
_Pragma("GCC diagnostic push") \
- _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
+ _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
#else
# define LV2_DISABLE_DEPRECATION_WARNINGS
#endif