From f7f8db5337a043557b7572f89dbde691074b6b22 Mon Sep 17 00:00:00 2001 From: qPCR4vir Date: Wed, 2 Dec 2015 13:42:04 +0100 Subject: [PATCH] FIX: MinGW no expose functions in std:: --- source/deploy.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/deploy.cpp b/source/deploy.cpp index d61b0dd5..817721ec 100644 --- a/source/deploy.cpp +++ b/source/deploy.cpp @@ -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) {