kern: tweak KScopedAutoObject

This commit is contained in:
Michael Scire 2020-12-02 04:08:06 -08:00
parent 7901f15d20
commit 45c1b044d3

View File

@ -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();
}