summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-24 05:10:48 +0200
committerLioncash <mathew1800@gmail.com>2018-07-24 05:13:22 +0200
commit1d755abce43534aae22f1c8402c8476e2f1f8fec (patch)
tree7f83ccf765241740286ba49b6ed045070924b527 /src/core/hle/service/acc
parentMerge pull request #790 from bunnei/shader-print-instr (diff)
downloadyuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar.gz
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar.bz2
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar.lz
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar.xz
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.tar.zst
yuzu-1d755abce43534aae22f1c8402c8476e2f1f8fec.zip
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"},