QPID-7390: strtod isn't really in std namespace(!)
- This trips up older versions of gcc
diff --git a/src/qpid/sys/posix/Time.cpp b/src/qpid/sys/posix/Time.cpp
index d6ae0b6..d7774d3 100644
--- a/src/qpid/sys/posix/Time.cpp
+++ b/src/qpid/sys/posix/Time.cpp
@@ -107,7 +107,7 @@
 
     const char* start = s.c_str();
     char* end;
-    double number = std::strtod(start, &end);
+    double number = strtod(start, &end);
     // check whether we could do any conversion
     if (start==end) {
         i.setstate(std::ios::failbit);