diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-23 09:27:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 09:27:14 -0400 |
commit | a6740224346db3c86944783e2b91dc7180c05537 (patch) | |
tree | af122b8a75d07f25113ef277aa25b2fdca14d05f /src/common/thread.h | |
parent | 87b9b5d10fa4a30c8eb56f9de44ba0c24d57ae77 (diff) | |
parent | 1586f1c0b174bec6b1db7de48b46ff75e29f3bb2 (diff) |
Merge pull request #10859 from liamwhite/no-more-atomic-wait
general: remove atomic signal and wait
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 8ae169b4e..c6976fb6c 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -55,7 +55,7 @@ public: is_set = false; } - [[nodiscard]] bool IsSet() { + [[nodiscard]] bool IsSet() const { return is_set; } |