diff options
| author | 2020-11-06 10:33:13 -0800 | |
|---|---|---|
| committer | 2020-11-06 10:33:13 -0800 | |
| commit | 91a45834fd10620a9c3bb567183682a9e6a88217 (patch) | |
| tree | 162d9bc5ac1b219f9534374a6c6e75a202aca6dd /src/common/spin_lock.h | |
| parent | Merge pull request #4894 from lioncash/fn (diff) | |
| parent | General: Fix clang build (diff) | |
| download | yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.gz yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.xz yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.zip | |
Merge pull request #4891 from lioncash/clang2
General: Fix clang build
Diffstat (limited to 'src/common/spin_lock.h')
| -rw-r--r-- | src/common/spin_lock.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/spin_lock.h b/src/common/spin_lock.h index 4f946a258..06ac2f5bb 100644 --- a/src/common/spin_lock.h +++ b/src/common/spin_lock.h | |||
| @@ -15,6 +15,14 @@ namespace Common { | |||
| 15 | */ | 15 | */ |
| 16 | class SpinLock { | 16 | class SpinLock { |
| 17 | public: | 17 | public: |
| 18 | SpinLock() = default; | ||
| 19 | |||
| 20 | SpinLock(const SpinLock&) = delete; | ||
| 21 | SpinLock& operator=(const SpinLock&) = delete; | ||
| 22 | |||
| 23 | SpinLock(SpinLock&&) = delete; | ||
| 24 | SpinLock& operator=(SpinLock&&) = delete; | ||
| 25 | |||
| 18 | void lock(); | 26 | void lock(); |
| 19 | void unlock(); | 27 | void unlock(); |
| 20 | [[nodiscard]] bool try_lock(); | 28 | [[nodiscard]] bool try_lock(); |