Merge pull request #576 from santigl/santigl/streambuf-overflow-override

Remove `virtual` from `LogStreamBuf::overflow()`
This commit is contained in:
Sergiu Deitsch 2020-09-29 22:07:56 +02:00 committed by GitHub
commit af4df08e5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1128,7 +1128,7 @@ class GOOGLE_GLOG_DLL_DECL LogStreamBuf : public std::streambuf {
}
// This effectively ignores overflow.
virtual int_type overflow(int_type ch) {
int_type overflow(int_type ch) {
return ch;
}

View File

@ -1129,7 +1129,7 @@ class GOOGLE_GLOG_DLL_DECL LogStreamBuf : public std::streambuf {
}
// This effectively ignores overflow.
virtual int_type overflow(int_type ch) {
int_type overflow(int_type ch) {
return ch;
}