mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-01 20:24:40 +01:00
Work around Windows headers #defining ERROR by renaming enum values in StackFrameSymbolizer
Patch by Julian Seward <jseward@acm.org>, R=ted git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1120 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
cd04fe2c88
commit
c02002a581
3 changed files with 17 additions and 17 deletions
|
|
@ -56,13 +56,13 @@ class StackFrameSymbolizer {
|
|||
enum SymbolizerResult {
|
||||
// Symbol data was found and successfully loaded in resolver.
|
||||
// This does NOT guarantee source line info is found within symbol file.
|
||||
NO_ERROR,
|
||||
kNoError,
|
||||
// This indicates non-critical error, such as, no code module found for
|
||||
// frame's instruction, no symbol file, or resolver failed to load symbol.
|
||||
ERROR,
|
||||
kError,
|
||||
// This indicates error for which stack walk should be interrupted
|
||||
// and retried in future.
|
||||
INTERRUPT
|
||||
kInterrupt
|
||||
};
|
||||
|
||||
StackFrameSymbolizer(SymbolSupplier* supplier,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue