diff liboctave/oct-shlib.cc @ 11501:331fcc41ca23

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 03:04:51 -0500
parents 65d5776379c3
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/oct-shlib.cc
+++ b/liboctave/oct-shlib.cc
@@ -61,7 +61,7 @@
 #include "str-vec.h"
 
 octave_shlib::shlib_rep::shlib_rep (const std::string& f)
-  : count (1), file (f), tm_loaded ()
+  : count (1), file (f), tm_loaded (), fcn_names ()
 {
   instances[f] = this;