码迷,mamicode.com
首页 > 其他好文 > 详细

NNVM代码阅读

时间:2017-09-02 18:10:48      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:efi   stat   attr   警告   tin   c++   ble   list   ati   

op.h

#define DMLC_ATTRIBUTE_UNUSED __attribute__((unused))

__attribute__((unused)):通常,如果声明了某个变量,但从未对其进行引用,编译器将发出警告。此属性指示编译器您预计不会使用某个变量,并指示它在未使用该变量时不要发出警告。

void Variable_Attributes_unused_0()
{
    static int aStatic =0;
    int aUnused __attribute__ ((unused));
    int bUnused;
    aStatic++;
}

--


NNVM代码阅读

标签:efi   stat   attr   警告   tin   c++   ble   list   ati   

原文地址:http://www.cnblogs.com/Key-Ky/p/7466970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!