diff liboctave/oct-sort.h @ 11501:331fcc41ca23

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 03:04:51 -0500
parents 4d1fc073fbb7
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/oct-sort.h	Thu Jan 13 02:48:07 2011 -0500
+++ b/liboctave/oct-sort.h	Thu Jan 13 03:04:51 2011 -0500
@@ -182,8 +182,8 @@
   
   struct MergeState 
   {
-    MergeState (void) 
-      : a (0), ia (0), alloced (0) 
+    MergeState (void)
+      : min_gallop (), a (0), ia (0), alloced (0), n (0)
       { reset (); }
     
     ~MergeState (void)