summaryrefslogtreecommitdiff
blob: 381e731d9f62f5d4bfc5c1dca7eecf454c54ad87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Fix string conversions
# Author:  Steven Newbury <steve@snewbury.org.uk>
# Gentoo Bug: 664760
--- ./lastfmlib/utils/stringoperations.h~	2020-02-27 11:50:53.000000000 +0000
+++ ./lastfmlib/utils/stringoperations.h	2020-02-27 11:55:49.228128570 +0000
@@ -53,14 +53,6 @@
         ss << numeric;
         return ss.str();
     }
-
-    template<typename T>
-    inline std::string toWstring(T& numeric)
-    {
-        std::wstringstream ss;
-        ss << numeric;
-        return ss.str();
-    }
 }
 
 #endif