summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-11-10 14:26:34 -0500
committerDave Brolley <brolley@redhat.com>2009-11-10 14:26:34 -0500
commitb513cd75dac185ac258dc8260a01891c30be6251 (patch)
treeb8e44de21178425a34e3b0d2f749b730f20d9610 /staptree.cxx
parentfd212bd5d99abc3518cf523eb7af2fea5ae206ba (diff)
parentf94baaeed17aba11aa46e9b46f0564217fc9978c (diff)
downloadsystemtap-steved-b513cd75dac185ac258dc8260a01891c30be6251.tar.gz
systemtap-steved-b513cd75dac185ac258dc8260a01891c30be6251.tar.xz
systemtap-steved-b513cd75dac185ac258dc8260a01891c30be6251.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/staptree.cxx b/staptree.cxx
index bc552454..4c3b3090 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -76,23 +76,22 @@ symboldecl::~symboldecl ()
{
}
-probe_point::probe_point (std::vector<component*> const & comps,
- const token * t):
- components(comps), tok(t), optional (false), sufficient (false),
+probe_point::probe_point (std::vector<component*> const & comps):
+ components(comps), optional (false), sufficient (false),
condition (0)
{
}
// NB: shallow-copy of compoonents & condition!
probe_point::probe_point (const probe_point& pp):
- components(pp.components), tok(pp.tok), optional (pp.optional), sufficient (pp.sufficient),
+ components(pp.components), optional (pp.optional), sufficient (pp.sufficient),
condition (pp.condition)
{
}
probe_point::probe_point ():
- tok (0), optional (false), sufficient (false), condition (0)
+ optional (false), sufficient (false), condition (0)
{
}