From d0b4a5ffde2a86bc672097a4d5462b204364e59f Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 15 May 2009 15:23:42 -0700 Subject: Privatize many dwflpp members This helps make it more obvious which methods are accessed by external classes, which should help in refactoring. --- dwflpp.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dwflpp.cxx') diff --git a/dwflpp.cxx b/dwflpp.cxx index 6f75c0a4..bfae1354 100644 --- a/dwflpp.cxx +++ b/dwflpp.cxx @@ -63,9 +63,9 @@ static string TOK_KERNEL("kernel"); dwflpp::dwflpp(systemtap_session & session, const string& user_module): - sess(session), dwfl(NULL), module(NULL), module_dwarf(NULL), - module_bias(0), mod_info(NULL), module_start(0), module_end(0), - cu(NULL), function(NULL) + sess(session), module(NULL), module_bias(0), mod_info(NULL), + module_start(0), module_end(0), cu(NULL), dwfl(NULL), + module_dwarf(NULL), function(NULL) { if (user_module.empty()) setup_kernel(); -- cgit