diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-08-14 18:46:43 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-08-14 18:46:43 +0000 |
commit | 7c48629d49c40abd67d36cb45dad028b6b65f66c (patch) | |
tree | d185da8a8ef9ff133c862741514b92a089ec00f2 | |
parent | Linux dumper: fix comments in src/common/linux/module.h (diff) | |
download | breakpad-7c48629d49c40abd67d36cb45dad028b6b65f66c.tar.xz |
Fix build errors with gcc 4.4. Patch by Silvius Rus <rus@google.com>.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@383 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/processor/minidump_processor.cc | 1 | ||||
-rw-r--r-- | src/processor/pathname_stripper_unittest.cc | 2 | ||||
-rw-r--r-- | src/processor/postfix_evaluator-inl.h | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/processor/minidump_processor.cc b/src/processor/minidump_processor.cc index b59a605b..46243f88 100644 --- a/src/processor/minidump_processor.cc +++ b/src/processor/minidump_processor.cc @@ -28,6 +28,7 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <cassert> +#include <cstdio> #include "google_breakpad/processor/minidump_processor.h" #include "google_breakpad/processor/call_stack.h" diff --git a/src/processor/pathname_stripper_unittest.cc b/src/processor/pathname_stripper_unittest.cc index 957c94f2..54f04b78 100644 --- a/src/processor/pathname_stripper_unittest.cc +++ b/src/processor/pathname_stripper_unittest.cc @@ -27,6 +27,8 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#include <cstdio> + #include "processor/pathname_stripper.h" #include "processor/logging.h" diff --git a/src/processor/postfix_evaluator-inl.h b/src/processor/postfix_evaluator-inl.h index aa0851d9..b08cd182 100644 --- a/src/processor/postfix_evaluator-inl.h +++ b/src/processor/postfix_evaluator-inl.h @@ -38,6 +38,7 @@ #define PROCESSOR_POSTFIX_EVALUATOR_INL_H__ +#include <cstdio> #include <sstream> #include "processor/postfix_evaluator.h" |