标签:call sof strong isp error: str queue const error
环境:codeblocks
语言:C++
在执行:throw new exception("queue is empty.");时
遇到问题:error: no matching function for call to ‘std::exception:exception(const char[16])‘
解决办法:修改为
std::logic_error e("xxx.");
throw std::exception(e);
error: no matching function for call to 'std::exception:exception(const char[16])'
标签:call sof strong isp error: str queue const error
原文地址:https://www.cnblogs.com/zkfopen/p/10490897.html