mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
kern: tweak KScopedAutoObject
This commit is contained in:
parent
57f935391d
commit
972283032a
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ namespace ams::kern {
|
|||
}
|
||||
public:
|
||||
constexpr ALWAYS_INLINE KScopedAutoObject() : obj(nullptr) { /* ... */ }
|
||||
constexpr KScopedAutoObject(T *o) : obj(o) {
|
||||
constexpr ALWAYS_INLINE KScopedAutoObject(T *o) : obj(o) {
|
||||
if (this->obj != nullptr) {
|
||||
this->obj->Open();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue