blob: c6b6be699bad6b7c8c70aee1ff7edd8ed5847b84 (
plain)
1
2
3
4
5
6
7
8
9
|
// This file exists to override the processor logging for unit tests,
// since it confuses XCode into thinking unit tests have failed.
#include <sstream>
namespace google_breakpad {
extern std::ostringstream info_log;
}
#define BPLOG_INFO_STREAM google_breakpad::info_log
|