diff options
| author | 2023-06-23 09:27:14 -0400 | |
|---|---|---|
| committer | 2023-06-23 09:27:14 -0400 | |
| commit | a6740224346db3c86944783e2b91dc7180c05537 (patch) | |
| tree | af122b8a75d07f25113ef277aa25b2fdca14d05f /src/common/thread.h | |
| parent | Merge pull request #10842 from german77/native_mifare (diff) | |
| parent | general: remove atomic signal and wait (diff) | |
| download | yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.gz yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.xz yuzu-a6740224346db3c86944783e2b91dc7180c05537.zip | |
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: | |||
| 55 | is_set = false; | 55 | is_set = false; |
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | [[nodiscard]] bool IsSet() { | 58 | [[nodiscard]] bool IsSet() const { |
| 59 | return is_set; | 59 | return is_set; |
| 60 | } | 60 | } |
| 61 | 61 | ||