comparison libinterp/octave-value/ov-cell.cc @ 21121:f5b17eb2508b

maint: Remove unused variables. * data.cc (Fissorted): Remove "octave_value mode_arg". * error.cc (Ferror): Remove "octave_value_list tmp". * gl2ps-renderer.cc (gl2ps_renderer::draw_text): Comment out "Matrix bbox". * graphics.cc (base_properties::get_dynamic): Remove "octave_value retval". * graphics.cc (Faddproperty): Remove "octave_value retval". * regexp.cc (octregexprep): Remove "octave_value retval". * sparse-xpow.cc (elem_xpow): Remove "Complex tmp". * symtab.cc (symbol_table::fcn_info::fcn_info_rep::find_autoload): Remove "octave_value retval". * urlwrite.cc (__ftp_mode__): Remove "octave_value retval". * xpow.cc (xpow (const DiagMatrix& a, double b)): Remove "octave_value retval". * symrcm.cc (Fsymrcm): Remove "octave_value retval". * ov-cell.cc (Fcellstr): Remove "octave_value retval". * ov-classdef.cc (cdef_object::map_value): Remove "octave_value pvalue". * ov-struct.cc (octave_scalar_struct::load_binary): Remove "dim_vector dv (1, 1)" * ov-struct.cc (Fstruct): Remove "Cell fields" ov.cc (octave_value::assign): Remove "octave_value retval". * pt-classdef.cc (tree_classdef_body::~tree_classdef_body): Remove "octave_value retval". * pt-eval.cc (tree_evaluator::visit_statement_list): Comment out "static octave_value_list empty_list". * DASRT.cc (DASRT::integrate): Remove "DASRT_result retval". * sparse-base-chol.cc (sparse_base_chol<>): Remove "chol_type ret".
author Rik <rik@octave.org>
date Wed, 20 Jan 2016 20:57:45 -0800
parents 3ac9f47fb04b
children fcac5dbbf9ed
comparison
equal deleted inserted replaced
21120:499b851fbfae 21121:f5b17eb2508b
1263 @seealso{cell, char}\n\ 1263 @seealso{cell, char}\n\
1264 @end deftypefn") 1264 @end deftypefn")
1265 { 1265 {
1266 if (args.length () != 1) 1266 if (args.length () != 1)
1267 print_usage (); 1267 print_usage ();
1268
1269 octave_value retval;
1270 1268
1271 octave_value_list tmp = Fiscellstr (args, 1); 1269 octave_value_list tmp = Fiscellstr (args, 1);
1272 1270
1273 if (tmp(0).is_true ()) 1271 if (tmp(0).is_true ())
1274 return ovl (args(0)); 1272 return ovl (args(0));