diff liboctave/numeric/CollocWt.cc @ 29950:6549fa7558ba

eliminate some unnecessary octave:: namespace tags Where possible, remove octave:: namespace tags used inside a "namespace octave" block. Files affected: event-manager.cc, hook-fcn.cc, input.cc, latex-text-renderer.cc, oct-hist.cc, sysdep.cc, cdef-object.cc, cdef-object.h, oct-parse.yy, pt-eval.cc, CollocWt.cc, oct-convn.cc, oct-norm.cc, file-ops.cc.
author John W. Eaton <jwe@octave.org>
date Fri, 13 Aug 2021 14:08:16 -0400
parents 25246c1a1645
children f3f3e3793fb5
line wrap: on
line diff
--- a/liboctave/numeric/CollocWt.cc	Tue Aug 10 16:42:29 2021 -0400
+++ b/liboctave/numeric/CollocWt.cc	Fri Aug 13 14:08:16 2021 -0400
@@ -233,7 +233,7 @@
             // Famous last words:  100 iterations should be more than
             // enough in all cases.
 
-            if (++k > 100 || octave::math::isnan (z))
+            if (++k > 100 || math::isnan (z))
               return false;
 
             if (std::abs (z) <= 100 * std::numeric_limits<double>::epsilon ())