summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.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/vi/vi.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/vi/vi.h')
-rw-r--r--src/core/hle/service/vi/vi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.h b/src/core/hle/service/vi/vi.h
index e8bda01d7..92f5b6059 100644
--- a/src/core/hle/service/vi/vi.h
+++ b/src/core/hle/service/vi/vi.h
@@ -24,8 +24,8 @@ class Module final {
public:
class Interface : public ServiceFramework<Interface> {
public:
- Interface(std::shared_ptr<Module> module, const char* name,
- std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
+ explicit Interface(std::shared_ptr<Module> module, const char* name,
+ std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
void GetDisplayService(Kernel::HLERequestContext& ctx);