mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-27 17:55:29 +01:00
Several fixes for broken Mac build
This commit is contained in:
parent
7c2799f3ba
commit
5c521532fc
4 changed files with 10 additions and 11 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue