summaryrefslogtreecommitdiff
path: root/src/mock-log.h
diff options
context:
space:
mode:
authorBrian Silverman <bsilver16384@gmail.com>2015-06-16 16:50:01 -0700
committerBrian Silverman <bsilver16384@gmail.com>2015-06-16 16:50:01 -0700
commit180eaff781518b4aaeb31dffc6990f3539e7c70f (patch)
tree6b013fcc0d28576e5795d083f46f0791f459346e /src/mock-log.h
parent287ab79862c112ccc197160088cb640295392e35 (diff)
downloadglog-180eaff781518b4aaeb31dffc6990f3539e7c70f.tar.gz
glog-180eaff781518b4aaeb31dffc6990f3539e7c70f.tar.bz2
glog-180eaff781518b4aaeb31dffc6990f3539e7c70f.zip
Fix unused arguments warning in ScopedMockLog.
Diffstat (limited to 'src/mock-log.h')
-rw-r--r--src/mock-log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mock-log.h b/src/mock-log.h
index 5b21811..30a0f74 100644
--- a/src/mock-log.h
+++ b/src/mock-log.h
@@ -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.