summaryrefslogtreecommitdiffstats
path: root/dwflpp.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-05-15 15:23:42 -0700
committerJosh Stone <jistone@redhat.com>2009-05-15 15:23:42 -0700
commitd0b4a5ffde2a86bc672097a4d5462b204364e59f (patch)
tree027d69fe5bab811431e56a50d1907ba0881a2011 /dwflpp.cxx
parent0d3ea790a5ee17df1600ccb377fbeeb9f5574642 (diff)
downloadsystemtap-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.cxx6
1 files changed, 3 insertions, 3 deletions
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();