0
Console* initConsole(Controller* ctrl){
    if (ctrl == NULL)
        return NULL;
    Console* c = (Console*)malloc(sizeof(Console));
    c->ctrl = ctrl;
    return c;
}

'{' 标记之前应为 '='、','、';'、'asm' 或 ' attribute '

这个错误出现在我的一个模块中。对于某些函数,“{”与函数的标题不在同一行,所以我按下了退格键,保存并调试。模块是干净的,但错误转到另一个模块而且我不知道出了什么问题。

4

1 回答 1

3

如果我忘记在前向声明后放置分号(可能在包含的标题中),我通常会得到这个

于 2013-04-04T18:23:15.107 回答