changeset 69:d2d19bd98f60

[project @ 1993-08-27 07:25:32 by jwe] (RowVector::operator * (const ColumnVector& a) const): Fix brain-o.
author jwe
date Fri, 27 Aug 1993 07:25:32 +0000
parents 46807fe3db5b
children a5e8b7c9a3ad
files liboctave/RowVector.cc
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/RowVector.cc
+++ b/liboctave/RowVector.cc
@@ -298,8 +298,6 @@
   if (len != a.len)
     FAIL;
 
-  return 0.0;
-
   int i_one = 1;
   return F77_FCN (ddot) (&len, data, &i_one, a.data, &i_one);
 }