Manually tweak source formatting and then re-run clang-format
This commit is contained in:
parent
784b96d87f
commit
396a8d91a4
169 changed files with 805 additions and 809 deletions
|
@ -14,10 +14,8 @@ namespace Applets {
|
|||
|
||||
class Applet {
|
||||
public:
|
||||
virtual ~Applet() {
|
||||
}
|
||||
Applet(Service::APT::AppletId id) : id(id) {
|
||||
}
|
||||
virtual ~Applet() {}
|
||||
Applet(Service::APT::AppletId id) : id(id) {}
|
||||
|
||||
/**
|
||||
* Creates an instance of the Applet subclass identified by the parameter.
|
||||
|
|
|
@ -67,8 +67,7 @@ ResultCode ErrEula::StartImpl(const Service::APT::AppletStartupParameter& parame
|
|||
return RESULT_SUCCESS;
|
||||
}
|
||||
|
||||
void ErrEula::Update() {
|
||||
}
|
||||
void ErrEula::Update() {}
|
||||
|
||||
} // namespace Applets
|
||||
} // namespace HLE
|
||||
|
|
|
@ -12,8 +12,7 @@ namespace Applets {
|
|||
|
||||
class ErrEula final : public Applet {
|
||||
public:
|
||||
explicit ErrEula(Service::APT::AppletId id) : Applet(id) {
|
||||
}
|
||||
explicit ErrEula(Service::APT::AppletId id) : Applet(id) {}
|
||||
|
||||
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
|
||||
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
|
||||
|
|
|
@ -85,7 +85,6 @@ ResultCode MiiSelector::StartImpl(const Service::APT::AppletStartupParameter& pa
|
|||
return RESULT_SUCCESS;
|
||||
}
|
||||
|
||||
void MiiSelector::Update() {
|
||||
}
|
||||
void MiiSelector::Update() {}
|
||||
}
|
||||
} // namespace
|
||||
|
|
|
@ -66,8 +66,7 @@ ASSERT_REG_POSITION(unk_6C, 0x6C);
|
|||
|
||||
class MiiSelector final : public Applet {
|
||||
public:
|
||||
MiiSelector(Service::APT::AppletId id) : Applet(id), started(false) {
|
||||
}
|
||||
MiiSelector(Service::APT::AppletId id) : Applet(id), started(false) {}
|
||||
|
||||
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
|
||||
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
|
||||
|
|
|
@ -53,8 +53,7 @@ static_assert(sizeof(SoftwareKeyboardConfig) == 0x400, "Software Keyboard Config
|
|||
|
||||
class SoftwareKeyboard final : public Applet {
|
||||
public:
|
||||
SoftwareKeyboard(Service::APT::AppletId id) : Applet(id), started(false) {
|
||||
}
|
||||
SoftwareKeyboard(Service::APT::AppletId id) : Applet(id), started(false) {}
|
||||
|
||||
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
|
||||
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue