diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-02-24 21:04:51 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-02-24 21:04:51 +0000 |
commit | 2c2ae2854198ca20c48e62c05816fbaacdd474c7 (patch) | |
tree | 2ab4bbf0a7ec554b9e756157b5d04408509c82ed /src/common | |
parent | Use swprintf_s for VC8 or newer. r=mento (diff) | |
download | breakpad-2c2ae2854198ca20c48e62c05816fbaacdd474c7.tar.xz |
issue 238 - missing includes compiling with gcc 4.3. patch by taras glek, r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@240 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/linux/dump_symbols.cc | 2 | ||||
-rw-r--r-- | src/common/string_conversion.cc | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc index 1af940d6..b523c5d8 100644 --- a/src/common/linux/dump_symbols.cc +++ b/src/common/linux/dump_symbols.cc @@ -40,9 +40,11 @@ #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> +#include <algorithm> #include <functional> #include <vector> +#include <string.h> #include "common/linux/dump_symbols.h" #include "common/linux/file_id.h" diff --git a/src/common/string_conversion.cc b/src/common/string_conversion.cc index 3e4d8e88..50054ebc 100644 --- a/src/common/string_conversion.cc +++ b/src/common/string_conversion.cc @@ -30,6 +30,7 @@ #include "common/convert_UTF.h" #include "processor/scoped_ptr.h" #include "common/string_conversion.h" +#include <string.h> namespace google_breakpad { |