diff liboctave/MatrixType.cc @ 11501:331fcc41ca23

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 03:04:51 -0500
parents 0e05ed9f2a62
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/MatrixType.cc	Thu Jan 13 02:48:07 2011 -0500
+++ b/liboctave/MatrixType.cc	Thu Jan 13 03:04:51 2011 -0500
@@ -47,7 +47,7 @@
 MatrixType::MatrixType (const MatrixType &a)
   : typ (a.typ), sp_bandden (a.sp_bandden), bandden (a.bandden), 
     upper_band (a.upper_band), lower_band (a.lower_band), 
-    dense (a.dense), full (a.full), nperm (a.nperm)
+    dense (a.dense), full (a.full), nperm (a.nperm), perm (0)
 { 
   if (nperm != 0)
     {