kern: tweak KScopedAutoObject

This commit is contained in:
Michael Scire 2020-12-02 04:08:06 -08:00 committed by SciresM
parent 57f935391d
commit 972283032a

View file

@ -192,7 +192,7 @@ namespace ams::kern {
} }
public: public:
constexpr ALWAYS_INLINE KScopedAutoObject() : obj(nullptr) { /* ... */ } constexpr ALWAYS_INLINE KScopedAutoObject() : obj(nullptr) { /* ... */ }
constexpr KScopedAutoObject(T *o) : obj(o) { constexpr ALWAYS_INLINE KScopedAutoObject(T *o) : obj(o) {
if (this->obj != nullptr) { if (this->obj != nullptr) {
this->obj->Open(); this->obj->Open();
} }