summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fatal/fatal.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-20 01:08:07 +0200
committerGitHub <noreply@github.com>2018-07-20 01:08:07 +0200
commit31413f0d2f861090a597a042603bf72b5bb79928 (patch)
tree0a5093957c433b91e9f51a7fe7fdfba1a92fd6ba /src/core/hle/service/fatal/fatal.h
parentMerge pull request #716 from lioncash/construct (diff)
parenthle/service: Make constructors explicit where applicable (diff)
downloadyuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar.gz
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar.bz2
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar.lz
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar.xz
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.tar.zst
yuzu-31413f0d2f861090a597a042603bf72b5bb79928.zip
Diffstat (limited to 'src/core/hle/service/fatal/fatal.h')
-rw-r--r--src/core/hle/service/fatal/fatal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal.h b/src/core/hle/service/fatal/fatal.h
index 5bd111a14..ca607e236 100644
--- a/src/core/hle/service/fatal/fatal.h
+++ b/src/core/hle/service/fatal/fatal.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 ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx);
void ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx);