# HG changeset patch # User jwe # Date 1053890037 0 # Node ID c57f599bf7ea34df8b3d6ed193c745bb4eb62e42 # Parent 5cca7b5d6b342a4bb919598184e039d77a523a7a [project @ 2003-05-25 19:13:57 by jwe] diff -r 5cca7b5d6b34 -r c57f599bf7ea src/ChangeLog --- a/src/ChangeLog Sun May 25 02:40:35 2003 +0000 +++ b/src/ChangeLog Sun May 25 19:13:57 2003 +0000 @@ -1,3 +1,8 @@ +2003-05-25 John W. Eaton + + * ov-cx-mat.cc (octave_complex_matrix::assign): Move definition here. + * ov-cx-mat.h: From here. + 2003-05-24 John W. Eaton * ov-range.cc (octave_range::try_narrowing_conversion): Convert to diff -r 5cca7b5d6b34 -r c57f599bf7ea src/ov-cx-mat.cc --- a/src/ov-cx-mat.cc Sun May 25 02:40:35 2003 +0000 +++ b/src/ov-cx-mat.cc Sun May 25 19:13:57 2003 +0000 @@ -78,6 +78,13 @@ void octave_complex_matrix::assign (const octave_value_list& idx, + const ComplexMatrix& rhs) +{ + octave_base_matrix::assign (idx, rhs); +} + +void +octave_complex_matrix::assign (const octave_value_list& idx, const Matrix& rhs) { int len = idx.length (); diff -r 5cca7b5d6b34 -r c57f599bf7ea src/ov-cx-mat.h --- a/src/ov-cx-mat.h Sun May 25 02:40:35 2003 +0000 +++ b/src/ov-cx-mat.h Sun May 25 19:13:57 2003 +0000 @@ -78,8 +78,7 @@ octave_value *try_narrowing_conversion (void); - void assign (const octave_value_list& idx, const ComplexMatrix& rhs) - { octave_base_matrix::assign (idx, rhs); } + void assign (const octave_value_list& idx, const ComplexMatrix& rhs); void assign (const octave_value_list& idx, const Matrix& rhs);