diff options
author | Josh Stone <jistone@redhat.com> | 2009-05-15 15:23:42 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-05-15 15:23:42 -0700 |
commit | d0b4a5ffde2a86bc672097a4d5462b204364e59f (patch) | |
tree | 027d69fe5bab811431e56a50d1907ba0881a2011 /dwflpp.cxx | |
parent | 0d3ea790a5ee17df1600ccb377fbeeb9f5574642 (diff) | |
download | systemtap-steved-d0b4a5ffde2a86bc672097a4d5462b204364e59f.tar.gz systemtap-steved-d0b4a5ffde2a86bc672097a4d5462b204364e59f.tar.xz systemtap-steved-d0b4a5ffde2a86bc672097a4d5462b204364e59f.zip |
Privatize many dwflpp members
This helps make it more obvious which methods are accessed by external
classes, which should help in refactoring.
Diffstat (limited to 'dwflpp.cxx')
-rw-r--r-- | dwflpp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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(); |