diff options
Diffstat (limited to 'include/android/compatibility.hxx')
-rw-r--r-- | include/android/compatibility.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/android/compatibility.hxx b/include/android/compatibility.hxx index 27c99f4f2604..1dc403dc0fe8 100644 --- a/include/android/compatibility.hxx +++ b/include/android/compatibility.hxx @@ -27,12 +27,6 @@ namespace std { inline double fmax(double x, double y) { return ::fmax(x, y); } -inline long stol(const std::string& str, std::size_t* /*pos*/ = 0, int base = 10) -{ - char* end; - return strtol(str.c_str(), &end, base); -} - template <typename T> T round(T x) { return ::round(x); } template <typename T> T trunc(T x) { return ::trunc(x); } |