comparison 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
comparison
equal deleted inserted replaced
11500:7aeb4eb7403f 11501:331fcc41ca23
59 #include "lo-error.h" 59 #include "lo-error.h"
60 #include "oct-shlib.h" 60 #include "oct-shlib.h"
61 #include "str-vec.h" 61 #include "str-vec.h"
62 62
63 octave_shlib::shlib_rep::shlib_rep (const std::string& f) 63 octave_shlib::shlib_rep::shlib_rep (const std::string& f)
64 : count (1), file (f), tm_loaded () 64 : count (1), file (f), tm_loaded (), fcn_names ()
65 { 65 {
66 instances[f] = this; 66 instances[f] = this;
67 67
68 if (is_out_of_date ()) 68 if (is_out_of_date ())
69 (*current_liboctave_warning_with_id_handler) 69 (*current_liboctave_warning_with_id_handler)