diff liboctave/util/oct-sort.cc @ 21578:683a1beee538

maint: Use "FIXME:" for all code blocks needing further attention. * files-dock-widget.cc, file-editor-tab.cc, file-editor-tab.h, file-editor.cc, octave-qscintilla.cc, octave-qt-link.cc, __ilu__.cc, debug.h, oct-stream.cc, pt-jit.cc, __magick_read__.cc, ov-classdef.cc, pt-stmt.cc, oct-sort.cc, inputParser.m, validateattributes.m, fminunc.m, fsolve.m, fzero.m, __scatter__.m, print.m: Use "FIXME:" for all code blocks needing further attention.
author Rik <rik@octave.org>
date Fri, 01 Apr 2016 14:55:13 -0700
parents 40de9f8f23a6
children b6a686543080
line wrap: on
line diff
--- a/liboctave/util/oct-sort.cc	Fri Apr 01 14:14:11 2016 -0700
+++ b/liboctave/util/oct-sort.cc	Fri Apr 01 14:55:13 2016 -0700
@@ -1803,7 +1803,7 @@
                         octave_idx_type *idx, Comp comp)
 {
   // Use a sequence of binary lookups.
-  // TODO: Can this be sped up generally? The sorted merge case is dealt with
+  // FIXME: Can this be sped up generally?  The sorted merge case is dealt with
   // elsewhere.
   for (octave_idx_type j = 0; j < nvalues; j++)
     idx[j] = lookup (data, nel, values[j], comp);