summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2008-10-13 14:38:03 +1000
committerddomingo <ddomingo@redhat.com>2008-10-13 14:38:03 +1000
commitf4e4014f97627cfd36429d1c5b8e65373a837875 (patch)
treea36ae1581270ca034e211e67a8ad45e4aa6a25d7 /staptree.h
parent74939defa679347fdd0b32d804b24b9976cb7cf3 (diff)
parent180b066c1d27320c1d706e35f56c8dc165d89583 (diff)
downloadsystemtap-steved-f4e4014f97627cfd36429d1c5b8e65373a837875.tar.gz
systemtap-steved-f4e4014f97627cfd36429d1c5b8e65373a837875.tar.xz
systemtap-steved-f4e4014f97627cfd36429d1c5b8e65373a837875.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/staptree.h b/staptree.h
index 770a731e..c35728cb 100644
--- a/staptree.h
+++ b/staptree.h
@@ -574,8 +574,10 @@ struct stapfile
std::vector<functiondecl*> functions;
std::vector<vardecl*> globals;
std::vector<embeddedcode*> embeds;
+ std::string file_contents;
bool privileged;
- stapfile (): privileged (false) {}
+ stapfile (): file_contents (""),
+ privileged (false) {}
void print (std::ostream& o) const;
};