diff 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
line wrap: on
line diff
--- a/src/ov-struct.cc	Thu May 03 17:32:33 2012 -0400
+++ b/src/ov-struct.cc	Fri May 11 12:33:13 2012 -0400
@@ -2149,6 +2149,8 @@
 %!  assert (fieldnames (s), keys');
 
 %!assert (cell2struct ({1; 2}, {"a"; "b"}), struct ("a", 1, "b", 2));
+
+%!assert (cell2struct ({}, {"f"}, 3), struct ("f", {}));
 */