diff options
Diffstat (limited to '3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc')
-rw-r--r-- | 3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc b/3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc index c741d69..94542b5 100644 --- a/3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc +++ b/3rdParty/Breakpad/src/common/dwarf/dwarf2diehandler.cc @@ -34,2 +34,3 @@ #include <assert.h> +#include <stdint.h> @@ -59,4 +60,3 @@ bool DIEDispatcher::StartCompilationUnit(uint64 offset, uint8 address_size, -bool DIEDispatcher::StartDIE(uint64 offset, enum DwarfTag tag, - const AttributeList& attrs) { +bool DIEDispatcher::StartDIE(uint64 offset, enum DwarfTag tag) { // The stack entry for the parent of this DIE, if there is one. @@ -84,3 +84,3 @@ bool DIEDispatcher::StartDIE(uint64 offset, enum DwarfTag tag, // Ask the parent to find a handler. - handler = parent->handler_->FindChildHandler(offset, tag, attrs); + handler = parent->handler_->FindChildHandler(offset, tag); else @@ -94,3 +94,3 @@ bool DIEDispatcher::StartDIE(uint64 offset, enum DwarfTag tag, // itself to decide. - if (root_handler_->StartRootDIE(offset, tag, attrs)) + if (root_handler_->StartRootDIE(offset, tag)) handler = root_handler_; @@ -170,3 +170,3 @@ void DIEDispatcher::ProcessAttributeBuffer(uint64 offset, enum DwarfForm form, - const char* data, + const uint8_t *data, uint64 len) { |