mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
style cleanup
This commit is contained in:
parent
2355047715
commit
5e4307046a
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ namespace ams::kern {
|
|||
T *lock_ptr;
|
||||
public:
|
||||
explicit ALWAYS_INLINE KScopedLock(T *l) : lock_ptr(l) { this->lock_ptr->Lock(); }
|
||||
explicit ALWAYS_INLINE KScopedLock(T &l) : KScopedLock(std::addressof(l)) { /* ... */}
|
||||
explicit ALWAYS_INLINE KScopedLock(T &l) : KScopedLock(std::addressof(l)) { /* ... */ }
|
||||
ALWAYS_INLINE ~KScopedLock() { this->lock_ptr->Unlock(); }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue