FIX: MinGW no expose functions in std::

This commit is contained in:
qPCR4vir 2015-12-02 13:42:04 +01:00
parent 221e9f6624
commit f7f8db5337

View File

@ -61,6 +61,13 @@ namespace std
*pos = (std::size_t)(end - sptr);
return ((int)result);
}
using ::strtof;
using ::strtold;
using ::wcstold;
using ::strtoll;
using ::wcstoll;
using ::strtoull;
using ::wcstoull;
float stof(const std::string& str, std::size_t * pos)
{