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

error: function declaration isn’t a prototype [-Werror=strict-prototypes]

时间:2015-05-27 11:55:42      阅读:647      评论:0      收藏:0      [点我收藏+]

标签:

"warning: function declaration isn‘t a prototype" was caused by the function like that:
 
return_type XXX()
{
.......
}
 
Please just modify the input paramter to void.return_type XXX(void)
{
.......
}
Or turn off the warning with -Wno-strict-prototypes (or simply by omitting -Wstrict-prototypes).

error: function declaration isn’t a prototype [-Werror=strict-prototypes]

标签:

原文地址:http://www.cnblogs.com/cenglinjinran/p/4532775.html

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