aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad
diff options
context:
space:
mode:
authorRoman Margold <rmargold@chromium.org>2017-02-01 08:33:44 -0800
committerRoman Margold <rmargold@chromium.org>2017-02-01 08:33:44 -0800
commit5c521532fc0a1b65f42c0d61d2da206eadf318b8 (patch)
tree0589550ce92cfdb0797a73c18d10250be90432a5 /src/google_breakpad
parentSanitize dumped stacks to remove data that may be identifiable. (diff)
downloadbreakpad-5c521532fc0a1b65f42c0d61d2da206eadf318b8.tar.xz
Several fixes for broken Mac build
Diffstat (limited to 'src/google_breakpad')
-rw-r--r--src/google_breakpad/processor/minidump.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google_breakpad/processor/minidump.h b/src/google_breakpad/processor/minidump.h
index bff38bf3..25a871ad 100644
--- a/src/google_breakpad/processor/minidump.h
+++ b/src/google_breakpad/processor/minidump.h
@@ -836,7 +836,7 @@ class MinidumpUnloadedModuleList : public MinidumpStream,
const MinidumpUnloadedModule*
GetModuleAtIndex(unsigned int index) const override;
const CodeModules* Copy() const override;
- vector<linked_ptr<const CodeModule>> GetShrunkRangeModules() const override;
+ vector<linked_ptr<const CodeModule> > GetShrunkRangeModules() const override;
bool IsModuleShrinkEnabled() const override;
protected:
@@ -850,7 +850,7 @@ class MinidumpUnloadedModuleList : public MinidumpStream,
static const uint32_t kStreamType = MD_UNLOADED_MODULE_LIST_STREAM;
- bool Read(uint32_t expected_size_);
+ bool Read(uint32_t expected_size_) override;
// The largest number of modules that will be read from a minidump. The
// default is 1024.