summaryrefslogtreecommitdiffstats
path: root/src/web_service/telemetry_json.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-05-27 01:57:11 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-06-14 00:19:22 +0200
commit12156b199a13d7147f3fe6aebe72ae0c257986a5 (patch)
treecc315cb877b7555cb80c6f4322de8beb6bb12cdb /src/web_service/telemetry_json.cpp
parentMerge pull request #8446 from liamwhite/cmd-gdb (diff)
downloadyuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar.gz
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar.bz2
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar.lz
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar.xz
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.tar.zst
yuzu-12156b199a13d7147f3fe6aebe72ae0c257986a5.zip
Diffstat (limited to 'src/web_service/telemetry_json.cpp')
-rw-r--r--src/web_service/telemetry_json.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp
index 6215c914f..46faddb61 100644
--- a/src/web_service/telemetry_json.cpp
+++ b/src/web_service/telemetry_json.cpp
@@ -13,8 +13,8 @@ namespace WebService {
namespace Telemetry = Common::Telemetry;
struct TelemetryJson::Impl {
- Impl(std::string host, std::string username, std::string token)
- : host{std::move(host)}, username{std::move(username)}, token{std::move(token)} {}
+ Impl(std::string host_, std::string username_, std::string token_)
+ : host{std::move(host_)}, username{std::move(username_)}, token{std::move(token_)} {}
nlohmann::json& TopSection() {
return sections[static_cast<u8>(Telemetry::FieldType::None)];