powctl: integrate 13.0.0 changes (aula params not done yet)

This commit is contained in:
Michael Scire
2021-10-15 16:30:27 -07:00
parent c04a262d49
commit 990daec3a2
16 changed files with 241 additions and 154 deletions

View File

@@ -37,6 +37,10 @@ namespace ams::powctl {
bool has_session;
util::TypedStorage<impl::SessionImpl> impl_storage;
struct ConstantInitializeTag{};
constexpr Session(ConstantInitializeTag) : has_session(false), impl_storage() { /* ... */ }
Session() : has_session(false) { /* ... */ }
};