diff options
author | fche <fche> | 2007-06-09 22:50:13 +0000 |
---|---|---|
committer | fche <fche> | 2007-06-09 22:50:13 +0000 |
commit | 66e00001f078d3c441b082d9d38087521b3cfca7 (patch) | |
tree | 4f0eb07f0e8576cdd246e1dabdbdacf99c2e6484 | |
parent | 70d28673387e525fc82239c0204ba90d26978c61 (diff) | |
download | systemtap-steved-66e00001f078d3c441b082d9d38087521b3cfca7.tar.gz systemtap-steved-66e00001f078d3c441b082d9d38087521b3cfca7.tar.xz systemtap-steved-66e00001f078d3c441b082d9d38087521b3cfca7.zip |
2007-06-09 Frank Ch. Eigler <fche@elastic.org>
PR 4609
From Eugeniy Meshcheryakov <eugen@debian.org>
* staptree.cxx: Add #include <algorithm> for gcc 4.3.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | staptree.cxx | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2007-06-09 Frank Ch. Eigler <fche@elastic.org> + + PR 4609 + From Eugeniy Meshcheryakov <eugen@debian.org> + * staptree.cxx: Add #include <algorithm> for gcc 4.3. + 2007-06-08 David Smith <dsmith@redhat.com> PR 4553. diff --git a/staptree.cxx b/staptree.cxx index 8fb41ab6..08b2abae 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -15,6 +15,7 @@ #include <typeinfo> #include <sstream> #include <cassert> +#include <algorithm> using namespace std; |