summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm/interface.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/apm/interface.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/apm/interface.h')
-rw-r--r--src/core/hle/service/apm/interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apm/interface.h b/src/core/hle/service/apm/interface.h
index b99dbb412..85258a666 100644
--- a/src/core/hle/service/apm/interface.h
+++ b/src/core/hle/service/apm/interface.h
@@ -10,7 +10,7 @@ namespace Service::APM {
class APM final : public ServiceFramework<APM> {
public:
- APM(std::shared_ptr<Module> apm, const char* name);
+ explicit APM(std::shared_ptr<Module> apm, const char* name);
~APM() = default;
private: