Merge pull request #540 from pwnall/fix-uv-warn

Fix unused parameter warning on gcc.
This commit is contained in:
Sergiu Deitsch 2020-10-01 10:45:55 +02:00 committed by GitHub
commit d516278b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1438,7 +1438,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);
}