Keil 中没有调用的函数就会警告,如何再不跳用函数下,消除警告啊?

日期:2013-04-10 08:52:54 人气:2

Keil 中没有调用的函数就会警告,如何再不跳用函数下,消除警告啊?

使用函数属性限定符: __attribute__((unused)) 这个限定符属性禁止编译器在未引用该函数时生成警告。 示例:static int Function_Attributes_unused_0(int b) __attribute__ ((unused));
    A+
热门评论