aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-24 04:47:26 -0700
committerGitHub <noreply@github.com>2018-07-24 04:47:26 -0700
commit23e85b6b9f9b8f835944dc45e543206655c92ba0 (patch)
treebdc20813bd7083fdb901bfb1e178dffc72ea2466 /src/core/hle/service/acc
parent1cbf7ac6eadf37baa2ecdafa10b47430ac794f71 (diff)
parent1d755abce43534aae22f1c8402c8476e2f1f8fec (diff)
Merge pull request #797 from lioncash/explicit
core: Make converting constructors explicit where applicable
Diffstat (limited to 'src/core/hle/service/acc')
-rw-r--r--src/core/hle/service/acc/acc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 3e1c2c0a0..0b158e015 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -35,7 +35,7 @@ static constexpr u128 DEFAULT_USER_ID{1ull, 0ull};
class IProfile final : public ServiceFramework<IProfile> {
public:
- IProfile(u128 user_id) : ServiceFramework("IProfile"), user_id(user_id) {
+ explicit IProfile(u128 user_id) : ServiceFramework("IProfile"), user_id(user_id) {
static const FunctionInfo functions[] = {
{0, nullptr, "Get"},
{1, &IProfile::GetBase, "GetBase"},