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	Thu Apr 06 02:25:28 1995 +0000
+++ b/liboctave/CRowVector.cc	Thu Apr 06 02:35:53 1995 +0000
@@ -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);