From c02002a58184d9281a92ff6cd2606d6ba1dfb483 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek@gmail.com" Date: Mon, 4 Mar 2013 15:42:50 +0000 Subject: Work around Windows headers #defining ERROR by renaming enum values in StackFrameSymbolizer Patch by Julian Seward , R=ted git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1120 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/google_breakpad/processor/stack_frame_symbolizer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/google_breakpad/processor') diff --git a/src/google_breakpad/processor/stack_frame_symbolizer.h b/src/google_breakpad/processor/stack_frame_symbolizer.h index e862ff6f..6f89167e 100644 --- a/src/google_breakpad/processor/stack_frame_symbolizer.h +++ b/src/google_breakpad/processor/stack_frame_symbolizer.h @@ -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, -- cgit v1.2.1