diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-14 22:49:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-14 22:49:49 +0300 |
commit | 2d76c0c4a439a52a5beb1b5475c7c0dbb46482a0 (patch) | |
tree | bfdf5d4d21097b70611f3bcc4d6ad9066666c8de /src/localconsts.h | |
parent | 41f47b3b0a9e0350b4955d4c05845eeca5143663 (diff) | |
download | plus-2d76c0c4a439a52a5beb1b5475c7c0dbb46482a0.tar.gz plus-2d76c0c4a439a52a5beb1b5475c7c0dbb46482a0.tar.bz2 plus-2d76c0c4a439a52a5beb1b5475c7c0dbb46482a0.tar.xz plus-2d76c0c4a439a52a5beb1b5475c7c0dbb46482a0.zip |
Fix outline color issues.
Diffstat (limited to 'src/localconsts.h')
-rw-r--r-- | src/localconsts.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index 86943bb80..a6043e58f 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -48,10 +48,12 @@ #ifdef __GNUC__ #define A_UNUSED __attribute__ ((unused)) #define A_WARN_UNUSED __attribute__ ((warn_unused_result)) +#define DEPRECATED __attribute__ ((deprecated)) #else #define A_UNUSED #define A_WARN_UNUSED #define gnu_printf printf +#define DEPRECATED #endif #ifdef __clang__ #define gnu_printf printf |