From 0fe4726d9f75253faf881a9b4ad45fb087304945 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 12 Apr 2012 14:08:01 +1000 Subject: [PATCH] Add 'unused' annotation --- annotations.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/annotations.hpp b/annotations.hpp index 025b47d2..82285e2f 100644 --- a/annotations.hpp +++ b/annotations.hpp @@ -27,6 +27,7 @@ #define nonnull __attribute__ ((nonnull)) #define mustuse __attribute__ ((warn_unused_result)) +#define unused __attribute__ ((unused)) #define pure __attribute__ ((pure))