diff options
author | William Cohen <wcohen@redhat.com> | 2010-02-02 14:54:24 -0500 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2010-02-02 14:54:24 -0500 |
commit | 1c64350c56271d1dee13f813aa8c78ece33e3cd5 (patch) | |
tree | d7f9186f0036784b47e25aefe3915d743738fe70 /elaborate.h | |
parent | 3963c62757e752712592ebda63137cc7c6be532d (diff) | |
parent | d0bfd2ac518333369a384d58882ff37d5288225f (diff) | |
download | systemtap-steved-1c64350c56271d1dee13f813aa8c78ece33e3cd5.tar.gz systemtap-steved-1c64350c56271d1dee13f813aa8c78ece33e3cd5.tar.xz systemtap-steved-1c64350c56271d1dee13f813aa8c78ece33e3cd5.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'elaborate.h')
-rw-r--r-- | elaborate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elaborate.h b/elaborate.h index 30a02c5b..0a1549fb 100644 --- a/elaborate.h +++ b/elaborate.h @@ -17,6 +17,7 @@ #include <iosfwd> #include <sstream> #include <map> +#include <list> extern "C" { #include <elfutils/libdw.h> @@ -129,7 +130,7 @@ struct derived_probe: public probe virtual probe_point* sole_location () const; virtual void printsig (std::ostream &o) const; // return arguments of probe if there - virtual void getargs (std::set<std::string> &arg_set) const {} + virtual void getargs (std::list<std::string> &arg_set) const {} void printsig_nested (std::ostream &o) const; virtual void collect_derivation_chain (std::vector<probe*> &probes_list); |