changeset 11489:978802964923

tag call to floor with gnulib::
author John W. Eaton <jwe@octave.org>
date Wed, 12 Jan 2011 15:08:36 -0500
parents 49368dbf0822
children 0a4dfc867e60
files src/ChangeLog src/DLD-FUNCTIONS/gcd.cc
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
 2011-01-12  John W. Eaton  <jwe@octave.org>
 
+	* DLD-FUNCTIONS/gcd.cc (extended_gcd): Tag call to floor with gnulib::.
+
 	*oct-hist.cc (Fhistory_control): New function.
 
 2011-01-12  Pascal Dupuis  <Pascal.Dupuis@worldonline.be>
--- a/src/DLD-FUNCTIONS/gcd.cc
+++ b/src/DLD-FUNCTIONS/gcd.cc
@@ -130,7 +130,7 @@
 
   while (bb != 0)
     {
-      double qq = floor (aa / bb);
+      double qq = gnulib::floor (aa / bb);
       double tt = fmod (aa, bb);
 
       aa = bb;