gpt4 book ai didi

c++ - 声明与原型(prototype)不兼容

转载 作者:行者123 更新时间:2023-11-30 04:35:19 24 4
gpt4 key购买 nike

我对为什么会收到此错误感到困惑。标题的错误发生在 Globals.h 中的原型(prototype)上:

void NPCTalk(std::string const& speaker,std::vector<std::string> const& text)

和Functions.cpp中的函数:

void NPCTalk(string const& speaker,std::vector<std::string> const& text){
vector<string>::const_iterator it;
for (it=text.begin();it!=text.end();it++){
cout << speaker << ": " << *it << endl << endl;
system("PAUSE");
}
}

最佳答案

您忘记了原型(prototype)末尾的分号。你的签名是匹配的,这表明你很可能已经忘记了有问题的 namespace 。

关于c++ - 声明与原型(prototype)不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5369265/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com