Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2976050
  • 博文数量: 401
  • 博客积分: 12926
  • 博客等级: 上将
  • 技术积分: 4588
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-22 14:51
文章分类

全部博文(401)

文章存档

2015年(16)

2014年(4)

2013年(12)

2012年(82)

2011年(98)

2010年(112)

2009年(77)

分类: C/C++

2011-11-02 22:58:25

warn_unused_result

The warn_unused_result attribute causes a warning to be emitted if a caller of the function with this attribute does not use its return value. This is useful for functions where not checking the result is either a security problem or always a bug, such as realloc. int fn () __attribute__ ((warn_unused_result));
int foo ()
{
if (fn () < 0) return -1;
fn ();
return 0;
}

results in warning on line 5.


阅读(3889) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

GFree_Wind2011-11-03 11:54:14

不错。尤其是如果那种函数返回出错,会导致后面的操作无法进行的函数。