| Index: base/logging.cc
|
| diff --git a/base/logging.cc b/base/logging.cc
|
| index c7a8881456d13559484dca912b5addfe219c342c..065bf6351a924ce163e70a4b05c6ac1e036084bd 100644
|
| --- a/base/logging.cc
|
| +++ b/base/logging.cc
|
| @@ -803,6 +803,11 @@ std::wstring GetLogFileFullPath() {
|
| }
|
| #endif
|
|
|
| +void LogErrorNotReached(const char* file, int line) {
|
| + LogMessage(file, line, LOG_ERROR).stream()
|
| + << "NOTREACHED() hit.";
|
| +}
|
| +
|
| } // namespace logging
|
|
|
| std::ostream& std::operator<<(std::ostream& out, const wchar_t* wstr) {
|
|
|