diff options
author | mark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-12-05 23:13:18 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-12-05 23:13:18 +0000 |
commit | 31a477e889edcbf1d2c694c52be53d36520f108b (patch) | |
tree | 9319cb6d56ac721136c8d57bded03cd5088c57bb /src/client/mac | |
parent | Do not read CFI section when not outputing CFI information. (diff) | |
download | breakpad-31a477e889edcbf1d2c694c52be53d36520f108b.tar.xz |
Avoid redefinition of global static debug flag and remove unneeded
#import "GTMDefines.h
Patch by Alistair Tse <altse@chromium.org>
Review URL: https://breakpad.appspot.com/824002
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1244 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac')
-rw-r--r-- | src/client/mac/crash_generation/ConfigFile.mm | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/client/mac/crash_generation/ConfigFile.mm b/src/client/mac/crash_generation/ConfigFile.mm index 7ff25378..9764503f 100644 --- a/src/client/mac/crash_generation/ConfigFile.mm +++ b/src/client/mac/crash_generation/ConfigFile.mm @@ -36,17 +36,7 @@ #include <sys/time.h> #import "client/apple/Framework/BreakpadDefines.h" -#import "GTMDefines.h" - -#define VERBOSE 0 - -#if VERBOSE - bool gDebugLog = true; -#else - bool gDebugLog = false; -#endif - -#define DEBUGLOG if (gDebugLog) fprintf +#import "client/mac/crash_generation/Inspector.h" namespace google_breakpad { |