diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-19 12:05:48 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 12:25:02 -0400 |
| commit | c061c2bf3c579deb75f9da310f53652db9ef91c5 (patch) | |
| tree | 28f8662b2183ecb9132f633481aca73bf18f130e /src/core/hle/service/sm/sm.h | |
| parent | 758c357868fca86edf3642a5a7e658839d35183c (diff) | |
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.
Diffstat (limited to 'src/core/hle/service/sm/sm.h')
| -rw-r--r-- | src/core/hle/service/sm/sm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sm/sm.h b/src/core/hle/service/sm/sm.h index 13f5c4c28..e2a00e4f6 100644 --- a/src/core/hle/service/sm/sm.h +++ b/src/core/hle/service/sm/sm.h @@ -22,7 +22,7 @@ namespace Service::SM { /// Interface to "sm:" service class SM final : public ServiceFramework<SM> { public: - SM(std::shared_ptr<ServiceManager> service_manager); + explicit SM(std::shared_ptr<ServiceManager> service_manager); ~SM() override; private: |
