Mercurial > hg > octave-lyh
diff liboctave/CRowVector.cc @ 1214:0bf4d2b7def4
[project @ 1995-04-06 02:33:59 by jwe]
author | jwe |
---|---|
date | Thu, 06 Apr 1995 02:35:53 +0000 |
parents | 8302fab9fe24 |
children | 97eac19837dc |
line wrap: on
line diff
--- a/liboctave/CRowVector.cc +++ b/liboctave/CRowVector.cc @@ -48,16 +48,8 @@ * Complex Row Vector class */ -#define KLUDGE_VECTORS -#define TYPE Complex -#define KL_VEC_TYPE ComplexRowVector -#include "mx-kludge.cc" -#undef KLUDGE_VECTORS -#undef TYPE -#undef KL_VEC_TYPE - ComplexRowVector::ComplexRowVector (const RowVector& a) - : Array<Complex> (a.length ()) + : MArray<Complex> (a.length ()) { for (int i = 0; i < length (); i++) elem (i) = a.elem (i);