diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elaborate.cxx | 1 | ||||
-rw-r--r-- | parse.cxx | 1 | ||||
-rw-r--r-- | tapsets.cxx | 1 | ||||
-rw-r--r-- | translate.cxx | 1 |
5 files changed, 8 insertions, 0 deletions
@@ -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> @@ -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; |