__attribute__((unused)) variable attribute
程序员文章站
2022-03-08 08:18:49
...
Normally, the compiler warns if a variable is declared but is never referenced. This attribute informs the compiler that you expect a variable to be unused and tells it not to issue a warning if it is not used.
This variable attribute is a GNU compiler extension.
Example:
void Variable_Attributes_unused_0()
{
static int aStatic =0;
int aUnused __attribute__((unused));
int bUnused;
aStatic++;
}
void unusedfunction() __attribute__((unused));
推荐阅读
-
Xcode版本问题:Unknown argument type ‘__attribute__‘ in method -[RCTAppState getCurrentAppState:error:].
-
__attribute__ ((unused))
-
GCC 编译时指定变量存储地址 __attribute__((section(".ARM.__at_address")))
-
弱符号__attribute__((weak))
-
pragma pack、__attribute__的那些事
-
Xcode版本问题:Unknown argument type ‘__attribute__‘ in method -[RCTAppState getCurrentAppState:error:].
-
弱符号__attribute__((weak))
-
__attribute__((unused)) variable attribute