From 54508df30bc888c4d2359576ceb0cc8f2fa8dbdf Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Fri, 20 Sep 2019 10:32:33 +0200 Subject: [PATCH] Needs to be defined to nothing if none of the #if blocks match --- taglib/toolkit/taglib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/taglib/toolkit/taglib.h b/taglib/toolkit/taglib.h index 450d8a32..0a18a9ac 100644 --- a/taglib/toolkit/taglib.h +++ b/taglib/toolkit/taglib.h @@ -50,6 +50,8 @@ #define TAGLIB_DEPRECATED __attribute__((deprecated)) #elif defined(_MSC_VER) #define TAGLIB_DEPRECATED __declspec(deprecated) +#else +#define TAGLIB_DEPRECATED #endif #include -- 2.40.0