diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-01-11 20:31:53 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-01-11 20:31:53 +0000 |
commit | 78aaf6a6659436ea535b494d243dec064b18c07f (patch) | |
tree | 8b8a01a763393d76c4b57b5765311fdf77cbe57c /src | |
parent | Make some parts of the processor compile on Win32/MSVC (diff) | |
download | breakpad-78aaf6a6659436ea535b494d243dec064b18c07f.tar.xz |
Fix review comment that I missed.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@752 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r-- | src/processor/logging.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/logging.cc b/src/processor/logging.cc index c58fb8dd..70f6958e 100644 --- a/src/processor/logging.cc +++ b/src/processor/logging.cc @@ -42,12 +42,12 @@ #include "processor/logging.h" #include "processor/pathname_stripper.h" -namespace google_breakpad { - #ifdef _WIN32 #define snprintf _snprintf #endif +namespace google_breakpad { + LogStream::LogStream(std::ostream &stream, Severity severity, const char *file, int line) : stream_(stream) { |