comparison src/ov-cell.cc @ 5992:4289ed95dde8

[project @ 2006-09-15 20:29:18 by jwe]
author jwe
date Fri, 15 Sep 2006 20:29:18 +0000
parents 85c7dc4afe6b
children b64fb24bf4a0
comparison
equal deleted inserted replaced
5991:265723390e7b 5992:4289ed95dde8
162 if (! tmp.is_defined ()) 162 if (! tmp.is_defined ())
163 tmp = octave_value::empty_conv (type.substr (1), rhs); 163 tmp = octave_value::empty_conv (type.substr (1), rhs);
164 164
165 if (! error_state) 165 if (! error_state)
166 { 166 {
167 Cell tcell = tmp.cell_value (); 167 const Cell tcell = tmp.cell_value ();
168 168
169 if (! error_state && tcell.length () == 1) 169 if (! error_state && tcell.length () == 1)
170 { 170 {
171 tmp = tcell(0,0); 171 tmp = tcell(0,0);
172 172