diff src/ov-cell.cc @ 7503:8c32f95c2639

convert mapper functions to new format
author David Bateman <dbateman@free.fr>
date Wed, 20 Feb 2008 04:22:50 -0500
parents c8d362c69013
children c195bd0a5c64
line wrap: on
line diff
--- a/src/ov-cell.cc	Wed Feb 20 01:09:19 2008 -0500
+++ b/src/ov-cell.cc	Wed Feb 20 04:22:50 2008 -0500
@@ -829,7 +829,7 @@
   for (octave_idx_type i = 0; i < nel; i++)
     {
       std::ostringstream buf;
-      int digits = static_cast<int> (floor (log10 (static_cast<double> (nel)) + 1.0));
+      int digits = static_cast<int> (::floor (::log10 (static_cast<double> (nel)) + 1.0));
       buf << "_" << std::setw (digits) << std::setfill ('0') << i;
       std::string s = buf.str ();