Bug 1209252 - Part 2: typo fix for compile issue. r=bustage on a CLOSED TREE

This commit is contained in:
Paul Kerr [:pkerr] 2016-01-27 18:09:19 -08:00
parent 9b05f5b31c
commit 2fb6265743
2 changed files with 2 additions and 5 deletions

View File

@ -87,7 +87,7 @@ void RLogRingBuffer::DestroyInstance() {
delete instance;
instance = nullptr;
}
void RLogRingBuffer::Clear() {
OffTheBooksMutexAutoLock lock(mutex_);
log_messages_.clear();
@ -130,4 +130,3 @@ void RLogRingBuffer::FilterAny(const std::vector<std::string>& substrings,
}
} // namespace mozilla

View File

@ -95,7 +95,7 @@ class RLogRingBuffer {
}
void SetLogLimit(uint32_t new_limit);
void Log(std::string&& log)
void Log(std::string&& log);
void Clear();
private:
@ -120,5 +120,3 @@ class RLogRingBuffer {
} // namespace mozilla
#endif // rlogringbuffer_h__