comparison libinterp/corefcn/pt-jit.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 aba2e6293dd8
comparison
equal deleted inserted replaced
21577:31823239207e 21578:683a1beee538
2325 octave_value_list& retval) const 2325 octave_value_list& retval) const
2326 { 2326 {
2327 if (! function) 2327 if (! function)
2328 return false; 2328 return false;
2329 2329
2330 // TODO figure out a way to delete ov_args so we avoid duplicating refcount 2330 // FIXME: figure out a way to delete ov_args so we avoid duplicating refcount
2331 size_t nargs = ov_args.length (); 2331 size_t nargs = ov_args.length ();
2332 std::vector<octave_base_value *> args (nargs); 2332 std::vector<octave_base_value *> args (nargs);
2333 for (size_t i = 0; i < nargs; ++i) 2333 for (size_t i = 0; i < nargs; ++i)
2334 { 2334 {
2335 octave_base_value *obv = ov_args(i).internal_rep (); 2335 octave_base_value *obv = ov_args(i).internal_rep ();