c++ minicsv库的编译错误与解决方案
In file included from example.cpp:1:0:
minicsv.hpp: In function
'csv::ofstream& operator<<(csv::ofstream&, const
T&)':
minicsv.hpp:326:38: error: no matching function for call to
'csv::ofstream::escape_and_output(std::basic_ostringstream<char>::__string_type)'
ostm.escape_and_output(os_temp.str());
^
minicsv.hpp:326:38:
note: candidate is:
minicsv.hpp:266:8: note: void
csv::ofstream::escape_and_output(std::string&)
void
escape_and_output(std::string & src)
...
错误很多,不再贴出,占用篇幅。这些错误都来自于同一个函数头。这个函数头是这样定义的:
void escape_and_output(std::string & src)
而调用时是这个样子:
ostm.escape_and_output(os_temp.str());
很明显,调用时的函数头所要求的是右值引用,而真正的函数头给出的左值引用,两者不符,于是编译器报错。修改很简单,“&”改为“&”即可,即把函数头改成这个样子:
void escape_and_output(std::string &
src)
错误很水,本来也不想写出来,但是又怕对c++0x不熟悉的人会不知所措,故贴之。还有我不知道为何项目中会留下这么个显而易见的错误——或许那个老大的编译器太智能了吧。
更多相关文章请关注PHP中文网(www.php.cn)!