summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 18:05:48 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 18:25:02 +0200
commitc061c2bf3c579deb75f9da310f53652db9ef91c5 (patch)
tree28f8662b2183ecb9132f633481aca73bf18f130e /src/core/hle/service/vi/vi.cpp
parentMerge pull request #699 from lioncash/vfs (diff)
downloadyuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.gz
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.bz2
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.lz
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.xz
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.zst
yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.zip
Diffstat (limited to 'src/core/hle/service/vi/vi.cpp')
-rw-r--r--src/core/hle/service/vi/vi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index eccee6e33..3a69b85f9 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -579,7 +579,7 @@ private:
class ISystemDisplayService final : public ServiceFramework<ISystemDisplayService> {
public:
- ISystemDisplayService() : ServiceFramework("ISystemDisplayService") {
+ explicit ISystemDisplayService() : ServiceFramework("ISystemDisplayService") {
static const FunctionInfo functions[] = {
{1200, nullptr, "GetZOrderCountMin"},
{1202, nullptr, "GetZOrderCountMax"},
@@ -777,7 +777,7 @@ private:
class IApplicationDisplayService final : public ServiceFramework<IApplicationDisplayService> {
public:
- IApplicationDisplayService(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
+ explicit IApplicationDisplayService(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
~IApplicationDisplayService() = default;
private: