diff options
| author | 2018-07-19 12:05:48 -0400 | |
|---|---|---|
| committer | 2018-07-19 12:25:02 -0400 | |
| commit | c061c2bf3c579deb75f9da310f53652db9ef91c5 (patch) | |
| tree | 28f8662b2183ecb9132f633481aca73bf18f130e /src/core/hle/service/time | |
| parent | Merge pull request #699 from lioncash/vfs (diff) | |
| download | yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.gz yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.tar.xz yuzu-c061c2bf3c579deb75f9da310f53652db9ef91c5.zip | |
hle/service: Make constructors explicit where applicable
Prevents implicit construction and makes these lingering non-explicit
constructors consistent with the rest of the other classes in services.
Diffstat (limited to 'src/core/hle/service/time')
| -rw-r--r-- | src/core/hle/service/time/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/time.h b/src/core/hle/service/time/time.h index 49af38589..8dde28a94 100644 --- a/src/core/hle/service/time/time.h +++ b/src/core/hle/service/time/time.h | |||
| @@ -57,7 +57,7 @@ class Module final { | |||
| 57 | public: | 57 | public: |
| 58 | class Interface : public ServiceFramework<Interface> { | 58 | class Interface : public ServiceFramework<Interface> { |
| 59 | public: | 59 | public: |
| 60 | Interface(std::shared_ptr<Module> time, const char* name); | 60 | explicit Interface(std::shared_ptr<Module> time, const char* name); |
| 61 | 61 | ||
| 62 | void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx); | 62 | void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx); |
| 63 | void GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx); | 63 | void GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx); |