summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2005-12-05 20:04:36 +0000
committerfche <fche>2005-12-05 20:04:36 +0000
commit29e64872aaaf83106315b4fabe72983f73b0dfd2 (patch)
treefd1f369ff8df4d0c72ddfd7069826cbac4f53f3e
parent1bbeef03a440e3ac23d6e5148675450597a58e67 (diff)
downloadsystemtap-steved-29e64872aaaf83106315b4fabe72983f73b0dfd2.tar.gz
systemtap-steved-29e64872aaaf83106315b4fabe72983f73b0dfd2.tar.xz
systemtap-steved-29e64872aaaf83106315b4fabe72983f73b0dfd2.zip
2005-12-05 Frank Ch. Eigler <fche@elastic.org>
* *.cxx: Add <cassert> #include as needed.
-rw-r--r--ChangeLog4
-rw-r--r--elaborate.cxx1
-rw-r--r--parse.cxx1
-rw-r--r--tapsets.cxx1
-rw-r--r--translate.cxx1
5 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7bcc50b7..b780b068 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-12-05 Frank Ch. Eigler <fche@elastic.org>
+
+ * *.cxx: Add <cassert> #include as needed.
+
2005-12-02 Graydon Hoare <graydon@redhat.com>
* elaborate.cxx (mutated_var_collector): Forward
diff --git a/elaborate.cxx b/elaborate.cxx
index 7f8a0b91..8cfb455a 100644
--- a/elaborate.cxx
+++ b/elaborate.cxx
@@ -18,6 +18,7 @@ extern "C" {
#include <algorithm>
#include <fstream>
#include <map>
+#include <cassert>
#include <set>
#include <vector>
diff --git a/parse.cxx b/parse.cxx
index e46d3973..04123a4d 100644
--- a/parse.cxx
+++ b/parse.cxx
@@ -14,6 +14,7 @@
#include <fstream>
#include <cctype>
#include <cstdlib>
+#include <cassert>
#include <cerrno>
#include <climits>
#include <sstream>
diff --git a/tapsets.cxx b/tapsets.cxx
index a2e885df..5bfe4427 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -21,6 +21,7 @@
#include <stdexcept>
#include <vector>
#include <cstdarg>
+#include <cassert>
extern "C" {
#include <fcntl.h>
diff --git a/translate.cxx b/translate.cxx
index 45bd6696..ee1eff41 100644
--- a/translate.cxx
+++ b/translate.cxx
@@ -15,6 +15,7 @@
#include <set>
#include <sstream>
#include <string>
+#include <cassert>
using namespace std;