为什么要“重新定义 typedef” GCC 4.3 有错误,但 GCC 4.6 没有错误?

发布于 2024-11-17 16:21:54 字数 387 浏览 3 评论 0原文

我一直在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界如花海般美丽 2024-11-24 16:21:54

这看起来像是故意更改...

我不知道手头有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文