mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-05 12:12:59 +00:00
Switch mac DumpSymbols::WriteSymbolFile to take an ostream instead of a FILE* to match the changes to Module::Write
R=mark at http://breakpad.appspot.com/294001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@818 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -35,6 +35,7 @@
|
||||
#include <mach-o/arch.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
#include "common/mac/dump_syms.h"
|
||||
@@ -82,7 +83,7 @@ static bool Start(const Options &options) {
|
||||
}
|
||||
}
|
||||
|
||||
return dump_symbols.WriteSymbolFile(stdout);
|
||||
return dump_symbols.WriteSymbolFile(std::cout);
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
||||
Reference in New Issue
Block a user