aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-02-27 23:59:40 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-02-27 23:59:40 +0000
commit2ad976ef0ba44f36842b9b7a11848f6b40fd25d5 (patch)
treef5c7d26102e035346f35db90e2128a183149779c /src/google_breakpad
parentFix for issue 242, plus a redo of how old exception handlers are tracked, and... (diff)
downloadbreakpad-2ad976ef0ba44f36842b9b7a11848f6b40fd25d5.tar.xz
Fix for issues 296, 297. Various symbol supplier classes need to be updated with new overload('make check' was failing, as well as crash_report), and remove logging that was flooding output
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@318 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad')
-rw-r--r--src/google_breakpad/processor/symbol_supplier.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google_breakpad/processor/symbol_supplier.h b/src/google_breakpad/processor/symbol_supplier.h
index 752bbbc3..7b9d00e4 100644
--- a/src/google_breakpad/processor/symbol_supplier.h
+++ b/src/google_breakpad/processor/symbol_supplier.h
@@ -67,14 +67,14 @@ class SymbolSupplier {
const SystemInfo *system_info,
string *symbol_file) = 0;
// Same as above, except also places symbol data into symbol_data.
- // If symbol_data is NULL, the data is not returned.
+ // If symbol_data is NULL, the data is not returned.
// TODO(nealsid) Once we have symbol data caching behavior implemented
// investigate making all symbol suppliers implement all methods,
// and make this pure virtual
virtual SymbolResult GetSymbolFile(const CodeModule *module,
const SystemInfo *system_info,
string *symbol_file,
- string *symbol_data) { assert(0); }
+ string *symbol_data) = 0;
};
} // namespace google_breakpad