aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/spl
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-19 16:08:07 -0700
committerGitHub <noreply@github.com>2018-07-19 16:08:07 -0700
commit31413f0d2f861090a597a042603bf72b5bb79928 (patch)
tree0a5093957c433b91e9f51a7fe7fdfba1a92fd6ba /src/core/hle/service/spl
parent724467113736bedd80cdaebad9966be4bfba29bb (diff)
parentc061c2bf3c579deb75f9da310f53652db9ef91c5 (diff)
Merge pull request #717 from lioncash/explicit
hle/service: Make constructors explicit where applicable
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 {
public:
class Interface : public ServiceFramework<Interface> {
public:
- Interface(std::shared_ptr<Module> module, const char* name);
+ explicit Interface(std::shared_ptr<Module> module, const char* name);
void GetRandomBytes(Kernel::HLERequestContext& ctx);