diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-20 01:08:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 01:08:07 +0200 |
commit | 31413f0d2f861090a597a042603bf72b5bb79928 (patch) | |
tree | 0a5093957c433b91e9f51a7fe7fdfba1a92fd6ba /src/core/hle/service/time/time.h | |
parent | Merge pull request #716 from lioncash/construct (diff) | |
parent | hle/service: Make constructors explicit where applicable (diff) | |
download | yuzu-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/time/time.h')
-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 { public: class Interface : public ServiceFramework<Interface> { public: - Interface(std::shared_ptr<Module> time, const char* name); + explicit Interface(std::shared_ptr<Module> time, const char* name); void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx); void GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx); |