Skip to content

Commit

Permalink
Fix unused parameter warning on gcc.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnall committed Apr 11, 2020
1 parent 3ba8976 commit 7ed9ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/glog/logging.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ class GOOGLE_GLOG_DLL_DECL LogSink {
virtual void send(LogSeverity severity, const char* full_filename,
const char* base_filename, int line,
const struct ::tm* tm_time,
const char* message, size_t message_len, int32 usecs) {
const char* message, size_t message_len, int32 /*usecs*/) {
send(severity, full_filename, base_filename, line,
tm_time, message, message_len);
}
Expand Down

0 comments on commit 7ed9ca5

Please sign in to comment.