changeset 9232:7319e4de9e44

Add missing return statement in base-aepbal.h
author Michael Goffioul <michael.goffioul@gmail.com>
date Thu, 21 May 2009 20:48:37 +0100
parents 8a5a04b6c46b
children b935bbfab7c4
files liboctave/ChangeLog liboctave/base-aepbal.h
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Thu May 21 18:30:30 2009 +0100
+++ b/liboctave/ChangeLog	Thu May 21 20:48:37 2009 +0100
@@ -1,3 +1,8 @@
+2009-05-21  Michael Goffioul  <michael.goffioul@gmail.com>
+
+	* base-aepbal.h (base_aepbal::operator=): Add missing return
+	statement.
+
 2009-05-20  Jaroslav Hajek  <highegg@gmail.com>
 
 	* eigs-base.cc (
--- a/liboctave/base-aepbal.h	Thu May 21 18:30:30 2009 +0100
+++ b/liboctave/base-aepbal.h	Thu May 21 20:48:37 2009 +0100
@@ -50,6 +50,7 @@
       ilo = a.ilo;
       ihi = a.ihi;
       job = a.job;
+      return *this;
     }
 
   MatrixT balanced_matrix (void) const { return balanced_mat; }