service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.

This commit is contained in:
bunnei 2017-12-28 15:27:30 -05:00
parent 16fb1c8fe7
commit ad073846bc
10 changed files with 10 additions and 20 deletions

View file

@ -92,7 +92,5 @@ LM::LM() : ServiceFramework("lm") {
RegisterHandlers(functions);
}
LM::~LM() = default;
} // namespace LM
} // namespace Service

View file

@ -14,8 +14,8 @@ namespace LM {
class LM final : public ServiceFramework<LM> {
public:
explicit LM();
~LM();
LM();
~LM() = default;
private:
void Initialize(Kernel::HLERequestContext& ctx);