lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] odd/width-of-inf d3cb41e 2/6: Explicitly qualify std


From: Greg Chicares
Subject: [lmi-commits] [lmi] odd/width-of-inf d3cb41e 2/6: Explicitly qualify std::strtof()
Date: Wed, 21 Mar 2018 19:20:22 -0400 (EDT)

branch: odd/width-of-inf
commit d3cb41e4bd0fe4977647b04ac87382e9a9abd2dc
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Explicitly qualify std::strtof()
---
 numeric_io_traits.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/numeric_io_traits.hpp b/numeric_io_traits.hpp
index ebfd102..1a72166 100644
--- a/numeric_io_traits.hpp
+++ b/numeric_io_traits.hpp
@@ -336,7 +336,7 @@ template<> struct numeric_conversion_traits<float>
 #if defined LMI_MSVCRT
         {return strtoFDL_msvc(nptr, endptr);}
 #else  // !defined LMI_MSVCRT
-        {return strtof(nptr, endptr);}
+        {return std::strtof(nptr, endptr);}
 #endif // !defined LMI_MSVCRT
 };
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]