aboutsummaryrefslogtreecommitdiff
path: root/src/common/mac
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-10-06 18:16:36 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-10-06 18:16:36 +0000
commit760d66430e41ea9b817492b2137268e41430035b (patch)
treec00453561a07844743967c2f4aacebd31db32d8d /src/common/mac
parentModification to crash_report to process a directory of .DMP files (diff)
downloadbreakpad-760d66430e41ea9b817492b2137268e41430035b.tar.xz
10.6 SDK compatibility fixes. No bug.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@407 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/mac')
-rw-r--r--src/common/mac/SimpleStringDictionary.mm2
-rw-r--r--src/common/mac/dwarf/bytereader.cc3
-rw-r--r--src/common/mac/dwarf/dwarf2reader.cc2
-rw-r--r--src/common/mac/dwarf/functioninfo.cc3
4 files changed, 8 insertions, 2 deletions
diff --git a/src/common/mac/SimpleStringDictionary.mm b/src/common/mac/SimpleStringDictionary.mm
index 567855e0..d9c791cc 100644
--- a/src/common/mac/SimpleStringDictionary.mm
+++ b/src/common/mac/SimpleStringDictionary.mm
@@ -31,6 +31,8 @@
// Simple string dictionary that does not allocate memory
//
+#include <assert.h>
+
#import "SimpleStringDictionary.h"
namespace google_breakpad {
diff --git a/src/common/mac/dwarf/bytereader.cc b/src/common/mac/dwarf/bytereader.cc
index 823cf2b6..906fbb32 100644
--- a/src/common/mac/dwarf/bytereader.cc
+++ b/src/common/mac/dwarf/bytereader.cc
@@ -26,8 +26,9 @@
// (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 "common/mac/dwarf/bytereader-inl.h"
+#include <assert.h>
+#include "common/mac/dwarf/bytereader-inl.h"
#include "common/mac/dwarf/bytereader.h"
namespace dwarf2reader {
diff --git a/src/common/mac/dwarf/dwarf2reader.cc b/src/common/mac/dwarf/dwarf2reader.cc
index dd21561d..e43029cc 100644
--- a/src/common/mac/dwarf/dwarf2reader.cc
+++ b/src/common/mac/dwarf/dwarf2reader.cc
@@ -26,6 +26,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 <assert.h>
+
#include <stack>
#include <utility>
diff --git a/src/common/mac/dwarf/functioninfo.cc b/src/common/mac/dwarf/functioninfo.cc
index 3501c035..04165dc0 100644
--- a/src/common/mac/dwarf/functioninfo.cc
+++ b/src/common/mac/dwarf/functioninfo.cc
@@ -29,11 +29,12 @@
// This is a client for the dwarf2reader to extract function and line
// information from the debug info.
+#include <assert.h>
+
#include <map>
#include <queue>
#include <vector>
-
#include "common/mac/dwarf/functioninfo.h"
#include "common/mac/dwarf/bytereader.h"