summaryrefslogtreecommitdiff
path: root/src/core/hle/service/spl
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-19 12:05:48 -0400
committerGravatar Lioncash2018-07-19 12:25:02 -0400
commitc061c2bf3c579deb75f9da310f53652db9ef91c5 (patch)
tree28f8662b2183ecb9132f633481aca73bf18f130e /src/core/hle/service/spl
parentMerge pull request #699 from lioncash/vfs (diff)
downloadyuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.gz
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.xz
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.zip
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/spl')
-rw-r--r--src/core/hle/service/spl/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/module.h b/src/core/hle/service/spl/module.h
index 6ab91b400..f24d998e8 100644
--- a/src/core/hle/service/spl/module.h
+++ b/src/core/hle/service/spl/module.h
@@ -12,7 +12,7 @@ class Module final {
12public: 12public:
13 class Interface : public ServiceFramework<Interface> { 13 class Interface : public ServiceFramework<Interface> {
14 public: 14 public:
15 Interface(std::shared_ptr<Module> module, const char* name); 15 explicit Interface(std::shared_ptr<Module> module, const char* name);
16 16
17 void GetRandomBytes(Kernel::HLERequestContext& ctx); 17 void GetRandomBytes(Kernel::HLERequestContext& ctx);
18 18