Merge pull request #1291 from lioncash/default

hle/service: Default constructors and destructors in the cpp file where applicable
This commit is contained in:
bunnei 2018-09-11 11:42:05 -04:00 committed by GitHub
commit 1470b85af9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
148 changed files with 291 additions and 45 deletions

View file

@ -247,6 +247,8 @@ PL_U::PL_U() : ServiceFramework("pl:u") {
}
}
PL_U::~PL_U() = default;
void PL_U::RequestLoad(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const u32 shared_font_type{rp.Pop<u32>()};

View file

@ -13,7 +13,7 @@ namespace Service::NS {
class PL_U final : public ServiceFramework<PL_U> {
public:
PL_U();
~PL_U() = default;
~PL_U() override;
private:
void RequestLoad(Kernel::HLERequestContext& ctx);