diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-23 15:27:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 15:27:14 +0200 |
commit | a6740224346db3c86944783e2b91dc7180c05537 (patch) | |
tree | af122b8a75d07f25113ef277aa25b2fdca14d05f /src/common | |
parent | Merge pull request #10842 from german77/native_mifare (diff) | |
parent | general: remove atomic signal and wait (diff) | |
download | yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.gz yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.bz2 yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.lz yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.xz yuzu-a6740224346db3c86944783e2b91dc7180c05537.tar.zst yuzu-a6740224346db3c86944783e2b91dc7180c05537.zip |
Diffstat (limited to 'src/common')
-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; } |