comparison src/ov-struct.cc @ 14624:edf9ca8a92a8 stable

when redimensioning, always pad dim_vector objects with 1 (bug #33216) * dim-vector.cc (dim_vector::redim): Always pad with 1. * dim-vector.h (dim_vector::redim): Update comment. * Array.cc (Array<T>::assign): Query dimensions for all zeros before redimensioning. * ov-struct.cc: New test.
author John W. Eaton <jwe@octave.org>
date Fri, 11 May 2012 12:33:13 -0400
parents 72c96de7a403
children bb5ecda3b975 d174210ce1ec
comparison
equal deleted inserted replaced
14597:6980b0f35df9 14624:edf9ca8a92a8
2147 %! assert (s, t); 2147 %! assert (s, t);
2148 %! assert (struct2cell (s), vals'); 2148 %! assert (struct2cell (s), vals');
2149 %! assert (fieldnames (s), keys'); 2149 %! assert (fieldnames (s), keys');
2150 2150
2151 %!assert (cell2struct ({1; 2}, {"a"; "b"}), struct ("a", 1, "b", 2)); 2151 %!assert (cell2struct ({1; 2}, {"a"; "b"}), struct ("a", 1, "b", 2));
2152
2153 %!assert (cell2struct ({}, {"f"}, 3), struct ("f", {}));
2152 */ 2154 */
2153 2155
2154 2156
2155 // So we can call Fcellstr directly. 2157 // So we can call Fcellstr directly.
2156 extern octave_value_list Fcellstr (const octave_value_list& args, int); 2158 extern octave_value_list Fcellstr (const octave_value_list& args, int);