Mercurial > hg > octave-nkf
diff src/ov-str-mat.cc @ 3836:b8c1cb5b9fd9
[project @ 2001-05-31 19:30:49 by jwe]
author | jwe |
---|---|
date | Thu, 31 May 2001 19:30:52 +0000 |
parents | e8fbc8c3d6d9 |
children | f9ea3dcf58ee |
line wrap: on
line diff
--- a/src/ov-str-mat.cc +++ b/src/ov-str-mat.cc @@ -39,6 +39,7 @@ #include "ov-str-mat.h" #include "gripes.h" #include "pr-output.h" +#include "pt-mat.h" DEFINE_OCTAVE_ALLOCATOR (octave_char_matrix_str); @@ -94,10 +95,6 @@ return retval; } -#if !defined (CXX_NEW_FRIEND_TEMPLATE_DECL) -extern void assign (Array2<char>&, const Array2<char>&); -#endif - void octave_char_matrix_str::assign (const octave_value_list& idx, const charMatrix& rhs) @@ -119,7 +116,7 @@ matrix.set_index (i); matrix.set_index (j); - ::assign (matrix, tmp); + ::assign (matrix, tmp, Vstring_fill_char); } break; @@ -129,7 +126,7 @@ matrix.set_index (i); - ::assign (matrix, tmp); + ::assign (matrix, tmp, Vstring_fill_char); } break;