WIP: The Road to 1.4 #23

Closed
williamjcm wants to merge 24 commits from the-road-to-1point4 into master
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 929e0c73ee - Show all commits

View File

@ -112,6 +112,11 @@ addEntry(EntryType type, StringView message) {
ArrayView<const LogEntry>
entries() {
if(!_logMutex.try_lock()) {
return nullptr;
}
_logMutex.unlock();
return _entries;
}