comparison libinterp/corefcn/load-path.h @ 30147:4f039927308b

maint: use "s_" prefix for static variables in class load_path. * load-path.cc, load-path.h: Use "s_" prefix for static variables in class load_path.
author Rik <rik@octave.org>
date Thu, 09 Sep 2021 20:07:29 -0700
parents 1955fc6e2128
children 14b098a6ba46
comparison
equal deleted inserted replaced
30146:1955fc6e2128 30147:4f039927308b
207 std::string get_command_line_path (void) const 207 std::string get_command_line_path (void) const
208 { 208 {
209 return m_command_line_path; 209 return m_command_line_path;
210 } 210 }
211 211
212 std::string system_path (void) const { return sys_path; } 212 std::string system_path (void) const { return s_sys_path; }
213 213
214 static const int M_FILE = 1; 214 static const int M_FILE = 1;
215 static const int OCT_FILE = 2; 215 static const int OCT_FILE = 2;
216 static const int MEX_FILE = 4; 216 static const int MEX_FILE = 4;
217 217
559 559
560 friend dir_info::fcn_file_map_type get_fcn_files (const std::string& d); 560 friend dir_info::fcn_file_map_type get_fcn_files (const std::string& d);
561 561
562 //-------- 562 //--------
563 563
564 static std::string sys_path; 564 static std::string s_sys_path;
565 565
566 static abs_dir_cache_type abs_dir_cache; 566 static abs_dir_cache_type s_abs_dir_cache;
567 567
568 interpreter& m_interpreter; 568 interpreter& m_interpreter;
569 569
570 mutable package_map_type m_package_map; 570 mutable package_map_type m_package_map;
571 571