Fix: error: no viable conversion from returned value of type 'basic_string, std::__1::allocator >::char_type, char_traits, allocator>' to function return type 'basic_string, allocator>' https://github.com/dirkvdb/lastfmlib/pull/13 --- lastfmlib/utils/stringoperations.h.orig +++ lastfmlib/utils/stringoperations.h @@ -55,7 +55,7 @@ namespace StringOperations } template - inline std::string toWstring(T& numeric) + inline std::wstring toWstring(T& numeric) { std::wstringstream ss; ss << numeric;