diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-19 16:08:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-19 16:08:07 -0700 |
| commit | 31413f0d2f861090a597a042603bf72b5bb79928 (patch) | |
| tree | 0a5093957c433b91e9f51a7fe7fdfba1a92fd6ba /src/core/hle/service/am/applet_ae.cpp | |
| parent | 724467113736bedd80cdaebad9966be4bfba29bb (diff) | |
| parent | c061c2bf3c579deb75f9da310f53652db9ef91c5 (diff) | |
Merge pull request #717 from lioncash/explicit
hle/service: Make constructors explicit where applicable
Diffstat (limited to 'src/core/hle/service/am/applet_ae.cpp')
| -rw-r--r-- | src/core/hle/service/am/applet_ae.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_ae.cpp b/src/core/hle/service/am/applet_ae.cpp index 180057ec2..7cebc918a 100644 --- a/src/core/hle/service/am/applet_ae.cpp +++ b/src/core/hle/service/am/applet_ae.cpp @@ -12,7 +12,7 @@ namespace Service::AM { class ILibraryAppletProxy final : public ServiceFramework<ILibraryAppletProxy> { public: - ILibraryAppletProxy(std::shared_ptr<NVFlinger::NVFlinger> nvflinger) + explicit ILibraryAppletProxy(std::shared_ptr<NVFlinger::NVFlinger> nvflinger) : ServiceFramework("ILibraryAppletProxy"), nvflinger(std::move(nvflinger)) { static const FunctionInfo functions[] = { {0, &ILibraryAppletProxy::GetCommonStateGetter, "GetCommonStateGetter"}, |
