hle/service: Make constructors explicit where applicable

Prevents implicit construction and makes these lingering non-explicit
constructors consistent with the rest of the other classes in services.
This commit is contained in:
Lioncash 2018-07-19 12:05:48 -04:00
parent 758c357868
commit c061c2bf3c
22 changed files with 25 additions and 25 deletions

View file

@ -10,7 +10,7 @@ namespace Service::APM {
class APM final : public ServiceFramework<APM> {
public:
APM(std::shared_ptr<Module> apm, const char* name);
explicit APM(std::shared_ptr<Module> apm, const char* name);
~APM() = default;
private: