summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-04-16 14:08:27 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-04-16 14:08:27 -0400
commitc295b10e71a5d5ff7dc6cb8f2c95a200d5af6812 (patch)
tree45fda34e8c71498bf225f2130deecbb414b1d715 /tapsets.cxx
parenta11f4bae4d8bf226520308b44342a14cd02cb196 (diff)
downloadsystemtap-steved-c295b10e71a5d5ff7dc6cb8f2c95a200d5af6812.tar.gz
systemtap-steved-c295b10e71a5d5ff7dc6cb8f2c95a200d5af6812.tar.xz
systemtap-steved-c295b10e71a5d5ff7dc6cb8f2c95a200d5af6812.zip
RHEL4 gcc compatibility: dummy ctor in unused task_finder_derived_probe
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 9fc7b455..cab3236e 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -4270,6 +4270,8 @@ dwarf_builder::build(systemtap_session & sess,
struct task_finder_derived_probe: public derived_probe
{
+ // Dummy constructor for gcc 3.4 compatibility
+ task_finder_derived_probe (): derived_probe (0) { assert(0); }
};