error: ‘mpMap’ was not declared in this scope mpMap->Save(filename);
时间: 2023-05-19 21:01:53 浏览: 93
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
这个错误提示意味着在当前作用域中没有声明名为 "mpMap" 的变量或对象。可能是因为你没有包含正确的头文件或者没有在代码中定义这个变量。你需要检查一下你的代码,看看是否有这个变量的声明和定义。如果没有,你需要添加它们。如果有,你需要检查一下作用域和命名空间是否正确。
阅读全文