diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-05 19:54:48 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-05 19:54:48 +0000 |
commit | c0ec51afe09c266c49dfeb2dd079ca6c50f119d2 (patch) | |
tree | 919fd438c0887d64e0e86aae2221b775a1f792db /src/common | |
parent | Breakpad symbol dumper: Move Linux dumping classes into src/common. (diff) | |
download | breakpad-c0ec51afe09c266c49dfeb2dd079ca6c50f119d2.tar.xz |
Include what you use.
Patch by Adam Langley <agl@chromium.org>. r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@568 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/dwarf/functioninfo.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/dwarf/functioninfo.cc b/src/common/dwarf/functioninfo.cc index 69304c86..d8ab7da9 100644 --- a/src/common/dwarf/functioninfo.cc +++ b/src/common/dwarf/functioninfo.cc @@ -30,10 +30,13 @@ // information from the debug info. #include <assert.h> +#include <limits.h> +#include <stdio.h> #include <map> #include <queue> #include <vector> +#include <memory> #include "common/dwarf/functioninfo.h" |