fix: add notify when unreadlock

This commit is contained in:
2023-12-12 08:32:19 +00:00
parent a0150ec6fb
commit c7f5e249c8
4 changed files with 16 additions and 11 deletions

View File

@ -55,7 +55,7 @@ BlockingStringStream &BlockingStringStream::operator<<(const T &val) {
}
internalStream << val;
}
condition.notify_one();
condition.notify_all();
return *this;
}