Skip to content

Commit

Permalink
Merge pull request google#35 from bsilver8192/fix-mocklog-unused-argu…
Browse files Browse the repository at this point in the history
…ments

Fix mocklog unused arguments
  • Loading branch information
ukai committed Aug 6, 2015
2 parents 254db0a + 180eaff commit f769195
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mock-log.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ class ScopedMockLog : public GOOGLE_NAMESPACE::LogSink {
// WaitTillSent() and Log() are executed in the same thread.
virtual void send(GOOGLE_NAMESPACE::LogSeverity severity,
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) {
// We are only interested in the log severity, full file name, and
// log message.
Expand Down

0 comments on commit f769195

Please sign in to comment.