aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-02-15 16:26:32 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-02-15 16:26:32 +0000
commit430c0a371a5624babfb714e97a8ee940d2d678b5 (patch)
tree2c8549037ec392efd4eb0afe9d447c2ab2480ee1 /src/common
parentAdd filename to error message when PDBSourceLineWriter::Open fails (diff)
downloadbreakpad-430c0a371a5624babfb714e97a8ee940d2d678b5.tar.xz
Add some missing #includes
P=Albert Zeyer R=ted at http://breakpad.appspot.com/289001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@920 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r--src/common/dwarf/dwarf2reader.cc1
-rw-r--r--src/common/dwarf/types.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/common/dwarf/dwarf2reader.cc b/src/common/dwarf/dwarf2reader.cc
index fadce485..b4e61133 100644
--- a/src/common/dwarf/dwarf2reader.cc
+++ b/src/common/dwarf/dwarf2reader.cc
@@ -39,6 +39,7 @@
#include <string.h>
#include <map>
+#include <memory>
#include <stack>
#include <utility>
diff --git a/src/common/dwarf/types.h b/src/common/dwarf/types.h
index 08a325aa..61ca4579 100644
--- a/src/common/dwarf/types.h
+++ b/src/common/dwarf/types.h
@@ -33,6 +33,8 @@
#ifndef _COMMON_DWARF_TYPES_H__
#define _COMMON_DWARF_TYPES_H__
+#include <stdint.h>
+
typedef signed char int8;
typedef short int16;
typedef int int32;