Fix unused arguments warning in ScopedMockLog.

This commit is contained in:
Brian Silverman 2015-06-16 16:50:01 -07:00
parent 287ab79862
commit 180eaff781

View File

@ -115,7 +115,8 @@ class ScopedMockLog : public GOOGLE_NAMESPACE::LogSink {
// WaitTillSent() and Log() are executed in the same thread. // WaitTillSent() and Log() are executed in the same thread.
virtual void send(GOOGLE_NAMESPACE::LogSeverity severity, virtual void send(GOOGLE_NAMESPACE::LogSeverity severity,
const char* full_filename, const char* full_filename,
const char* base_filename, int line, const tm* tm_time, const char* /*base_filename*/, int /*line*/,
const tm* /*tm_time*/,
const char* message, size_t message_len) { const char* message, size_t message_len) {
// We are only interested in the log severity, full file name, and // We are only interested in the log severity, full file name, and
// log message. // log message.