diff options
| author | bunnei <bunneidev@gmail.com> | 2022-04-08 14:01:42 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-08 14:01:42 -0700 |
| commit | 04efd729d6b86b133d1ccacfcab77235e247f766 (patch) | |
| tree | 2a896020311d81e739adf0d2803d589f88ece313 /src/common/thread.h | |
| parent | 21359936b84b30b7b83de31d86ee2bbe0bc668d3 (diff) | |
| parent | d79274a5d973f6000e20df6261d7624c89cbff59 (diff) | |
Merge pull request #8169 from merryhime/scoped_lock
Replace lock_guard with scoped_lock
Diffstat (limited to 'src/common/thread.h')
| -rw-r--r-- | src/common/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread.h b/src/common/thread.h index a8c17c71a..626609372 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -17,7 +17,7 @@ namespace Common { class Event { public: void Set() { - std::lock_guard lk{mutex}; + std::scoped_lock lk{mutex}; if (!is_set) { is_set = true; condvar.notify_one(); |
