为什么要“重新定义 typedef” GCC 4.3 有错误,但 GCC 4.6 没有错误?
我一直在使用 GCC 4.6 进行编译来开发我的应用程序,但用户报告了“typedef 的重新定义”错误。在我错误地告诉用户使用 Git 获取最新源代码的一些混乱之后,我仔细观察并发现了与此类似的内容:
/* mystruct.h */
#ifdef MYSTRUCT_H
#define MYSTRUCT_H
typedef struct _mystruct mystruct
#endif
/* mystruct.c */
#include "mystruct.h"
typedef struct _mystruct
{
int a;
int b;
} mystruct;
对于旧的 GCC 版本来说,这很容易修复,但为什么这不再是一个错误?还是需要申报?
I've been developing my application using GCC 4.6 for compilation but a user reported the "redefinition of typedef" error. After some confusion where I wrongfully told the user to fetch the latest source using Git, I took a closer look and found something similar to this:
/* mystruct.h */
#ifdef MYSTRUCT_H
#define MYSTRUCT_H
typedef struct _mystruct mystruct
#endif
/* mystruct.c */
#include "mystruct.h"
typedef struct _mystruct
{
int a;
int b;
} mystruct;
Which is quite easy to fix for the older GCC versions, but why is this no longer an error? Or does it need reporting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来像是故意更改...
我不知道手头有 4.6,但看起来如果你使用的话你会收到警告
-迂腐
。This looks like a deliberate change...
I don't have 4.6 to hand, but it looks like you will get the warning if you use
-pedantic
.