diff liboctave/fCRowVector.cc @ 10350:12884915a8e4

merge MArray classes & improve Array interface
author Jaroslav Hajek <highegg@gmail.com>
date Sat, 23 Jan 2010 21:41:03 +0100
parents 07ebe522dac2
children a0728e81ed25
line wrap: on
line diff
--- a/liboctave/fCRowVector.cc	Mon Feb 22 23:07:21 2010 -0500
+++ b/liboctave/fCRowVector.cc	Sat Jan 23 21:41:03 2010 +0100
@@ -54,13 +54,6 @@
 
 // FloatComplex Row Vector class
 
-FloatComplexRowVector::FloatComplexRowVector (const FloatRowVector& a)
-  : MArray<FloatComplex> (a.length ())
-{
-  for (octave_idx_type i = 0; i < length (); i++)
-    elem (i) = a.elem (i);
-}
-
 bool
 FloatComplexRowVector::operator == (const FloatComplexRowVector& a) const
 {