我在第266行遇到错误。
WorldSession.h(266):错误C4430:缺少类型说明符 - int 假定。注意:C ++不支持default-int
WorldSession.h(266): 错误C4430:缺少类型说明符 - 假定为int。注意:C ++没有 支持default-int
这些是我从Visual C ++ Studio 2010中获得的两个错误。
extern OpcodeHandler WorldPacketHandlers[NUM_MSG_TYPES];
void CapitalizeString(string & arg);
第一个是第266行;第二行是267.我不确定是什么问题因为我很困惑。任何人都可以帮忙,谢谢!
答案 0 :(得分:1)
这一行:
extern OpcodeHandler; WorldPacketHandlers[NUM_MSG_TYPES];
应该是
extern OpcodeHandler /*no semicolon here*/ WorldPacketHandlers[NUM_MSG_TYPES];