# HG changeset patch # User Carnë Draug # Date 1470196505 -3600 # Node ID 46b67f1569b58c7ce95a357b51afb710b279a8aa # Parent af0dca907fae8ff2cc2aa6e3bb5a770559859b48 FCell: avoid repeating default value for a newly created Cell. * libinterp/octave-value/ov-cell.cc (FCell): default element values for a new Cell already is an 'octave_value (Matrix ())' so don't repeat that. diff -r af0dca907fae -r 46b67f1569b5 libinterp/octave-value/ov-cell.cc --- a/libinterp/octave-value/ov-cell.cc Tue Aug 02 03:40:02 2016 -0400 +++ b/libinterp/octave-value/ov-cell.cc Wed Aug 03 04:55:05 2016 +0100 @@ -1231,7 +1231,7 @@ check_dimensions (dims, "cell"); - return ovl (Cell (dims, Matrix ())); + return ovl (Cell (dims)); } DEFUN (iscellstr, args, ,