Mercurial > hg > octave-max
diff src/load-path.h @ 10907:6105ed2db9d7
load_path::dir_info::initialize: clear method_file_map before updating file list
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 23 Aug 2010 15:57:37 -0400 |
parents | 4d1fc073fbb7 |
children | 6dbf9bcce90e |
line wrap: on
line diff
--- a/src/load-path.h +++ b/src/load-path.h @@ -39,7 +39,7 @@ protected: load_path (void) - : dir_info_list (), fcn_map (), method_map () { } + : dir_info_list (), fcn_map (), private_fcn_map (), method_map () { } public: @@ -404,7 +404,7 @@ typedef method_map_type::const_iterator const_method_map_iterator; typedef method_map_type::iterator method_map_iterator; - + mutable dir_info_list_type dir_info_list; mutable fcn_map_type fcn_map;