Skip to content

Commit

Permalink
Merge pull request #287 from MBkkt/patch-6
Browse files Browse the repository at this point in the history
Fix possible warning in header
  • Loading branch information
smcallis authored Dec 16, 2022
2 parents d770849 + 5960927 commit 10b2e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/s2/base/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class S2LogMessage {
: severity_(severity), stream_(stream) {
if (enabled()) {
stream_ << file << ":" << line << " "
<< absl::LogSeverityName(severity) << " ";
<< absl::LogSeverityName(severity_) << " ";
}
}
~S2LogMessage() { if (enabled()) stream_ << std::endl; }
Expand Down

0 comments on commit 10b2e37

Please sign in to comment.