标签: c++11 codeblocks
由于出现此错误,所以无法构建Code :: Blocks的项目。 错误:“ to_wstring”不是“ std”的成员。
我已经包含了lib字符串 我的代码:
template <> struct make_string<wchar_t> { template <class Rep> static std::wstring from(Rep n) { return std::to_wstring(n); } };