mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-05 05:58:24 +01:00
Properly handle new tombstone values that now appear as a result of the llvm change described at https://reviews.llvm.org/D81784.
Change-Id: I79dc5a72b651aa057104cd42b4773391df68125b Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2317730 Reviewed-by: Mark Mentovai <mark@chromium.org> Reviewed-by: Nelson Billing <nbilling@google.com>
This commit is contained in:
parent
114336881a
commit
7d65240249
2 changed files with 6 additions and 1 deletions
|
|
@ -39,6 +39,7 @@
|
|||
#define COMMON_LINUX_MODULE_H__
|
||||
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
|
@ -62,6 +63,7 @@ class Module {
|
|||
public:
|
||||
// The type of addresses and sizes in a symbol table.
|
||||
typedef uint64_t Address;
|
||||
static constexpr uint64_t kMaxAddress = std::numeric_limits<Address>::max();
|
||||
struct File;
|
||||
struct Function;
|
||||
struct Line;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue