diff options
| author | 2018-10-10 20:59:25 -0400 | |
|---|---|---|
| committer | 2018-10-10 20:59:28 -0400 | |
| commit | 881bb2295d40c50a401cd05fff8eeb822ec577e9 (patch) | |
| tree | 87f5ed2f86168d9c8a181323f60e9d4f104bfca8 /src/web_service/telemetry_json.cpp | |
| parent | telemetry_json: Remove unnecessary includes (diff) | |
| download | yuzu-881bb2295d40c50a401cd05fff8eeb822ec577e9.tar.gz yuzu-881bb2295d40c50a401cd05fff8eeb822ec577e9.tar.xz yuzu-881bb2295d40c50a401cd05fff8eeb822ec577e9.zip | |
telemetry_json: Take std::string parameters by value
Taking them by const reference isn't advisable here, because it means
the std::move calls were doing nothing and we were always copying the
std::string instances.
Diffstat (limited to 'src/web_service/telemetry_json.cpp')
| -rw-r--r-- | src/web_service/telemetry_json.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp index e77950aa3..b24e806a8 100644 --- a/src/web_service/telemetry_json.cpp +++ b/src/web_service/telemetry_json.cpp | |||
| @@ -8,8 +8,7 @@ | |||
| 8 | 8 | ||
| 9 | namespace WebService { | 9 | namespace WebService { |
| 10 | 10 | ||
| 11 | TelemetryJson::TelemetryJson(const std::string& host, const std::string& username, | 11 | TelemetryJson::TelemetryJson(std::string host, std::string username, std::string token) |
| 12 | const std::string& token) | ||
| 13 | : host(std::move(host)), username(std::move(username)), token(std::move(token)) {} | 12 | : host(std::move(host)), username(std::move(username)), token(std::move(token)) {} |
| 14 | TelemetryJson::~TelemetryJson() = default; | 13 | TelemetryJson::~TelemetryJson() = default; |
| 15 | 14 | ||