From 91570a1eeb1eca425372e203656369f39ede5c61 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Wed, 22 Mar 2017 23:07:15 +0200 Subject: [PATCH] Just always use strtod here --- src/hb-common.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/hb-common.cc b/src/hb-common.cc index 4c1a9a8d5..16657303b 100644 --- a/src/hb-common.cc +++ b/src/hb-common.cc @@ -667,11 +667,7 @@ parse_float (const char **pp, const char *end, float *pv) float v; errno = 0; -#if defined (_MSC_VER) && (_MSC_VER < 1800) v = strtod (p, &pend); -#else - v = strtof (p, &pend); -#endif if (errno || p == pend) return false;