diff options
author | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-08-06 08:17:55 (GMT) |
---|---|---|
committer | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-08-06 08:17:55 (GMT) |
commit | f7691955e8289e539ff60aec6e23336ad5149ff0 (patch) | |
tree | 40dd04f3028c01b7f5b28d3a6727336801c60dc7 /src | |
parent | 254db0ae1b3b7ab11c43e3cce2241b3a039682d3 (diff) | |
parent | 180eaff781518b4aaeb31dffc6990f3539e7c70f (diff) | |
download | glog-f7691955e8289e539ff60aec6e23336ad5149ff0.zip glog-f7691955e8289e539ff60aec6e23336ad5149ff0.tar.gz glog-f7691955e8289e539ff60aec6e23336ad5149ff0.tar.bz2 |
Merge pull request #35 from bsilver8192/fix-mocklog-unused-arguments
Fix mocklog unused arguments
Diffstat (limited to 'src')
-rw-r--r-- | src/mock-log.h | 3 |
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. |