diff options
-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; |