mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 17:17:57 -05:00
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:
@ -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:
|
||||
|
Reference in New Issue
Block a user