diff liboctave/floatSCHUR.cc @ 11498:367bfee35ba0

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 02:37:45 -0500
parents 8a5e980da6aa
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/floatSCHUR.cc	Thu Jan 13 02:23:38 2011 -0500
+++ b/liboctave/floatSCHUR.cc	Thu Jan 13 02:37:45 2011 -0500
@@ -149,7 +149,7 @@
 }
 
 FloatSCHUR::FloatSCHUR (const FloatMatrix& s, const FloatMatrix& u)
-: schur_mat (s), unitary_mat (u)
+  : schur_mat (s), unitary_mat (u), selector (0)
 {
   octave_idx_type n = s.rows ();
   if (s.columns () != n || u.rows () != n || u.columns () != n)