diff liboctave/oct-time.h @ 10447:12d25a1d84bf

Use gnulib headers instead of C++ std headers where needed.
author David Grundberg <davidg@cs.umu.se>
date Wed, 24 Mar 2010 17:27:58 +0100
parents cbc402e64d83
children 9684b3c3b417
line wrap: on
line diff
--- a/liboctave/oct-time.h	Wed Mar 24 09:53:14 2010 -0400
+++ b/liboctave/oct-time.h	Wed Mar 24 17:27:58 2010 +0100
@@ -68,7 +68,7 @@
     : ot_unix_time (static_cast<time_t> (d)), ot_usec (0)
   {
     double ip;
-    ot_usec = static_cast<int> (std::modf (d, &ip) * 1e6);
+    ot_usec = static_cast<int> (::modf (d, &ip) * 1e6);
   }
 
   octave_time (const octave_base_tm& tm);