From 6de969a3040fa31ba60302c66613d1d2e6f5a730 Mon Sep 17 00:00:00 2001 From: "ivan.penkov@gmail.com" Date: Thu, 28 Jun 2012 22:46:01 +0000 Subject: This change allows compiling the google-breakpad code using a global ::string class instead of std::string. For more details take a look at common/using_std_string.h git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@974 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/linux/dump_symbols.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/common/linux/dump_symbols.h') diff --git a/src/common/linux/dump_symbols.h b/src/common/linux/dump_symbols.h index 9bf54d37..7b192817 100644 --- a/src/common/linux/dump_symbols.h +++ b/src/common/linux/dump_symbols.h @@ -38,6 +38,8 @@ #include #include +#include "common/using_std_string.h" + namespace google_breakpad { // Find all the debugging information in OBJ_FILE, an ELF executable @@ -46,8 +48,8 @@ namespace google_breakpad { // If OBJ_FILE has been stripped but contains a .gnu_debuglink section, // then look for the debug file in DEBUG_DIR. // If CFI is set to false, then omit the CFI section. -bool WriteSymbolFile(const std::string &obj_file, - const std::string &debug_dir, +bool WriteSymbolFile(const string &obj_file, + const string &debug_dir, bool cfi, std::ostream &sym_stream); -- cgit v1.2.1