diff options
| author | 2020-08-18 14:21:50 -0400 | |
|---|---|---|
| committer | 2020-08-18 15:08:32 -0400 | |
| commit | f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch) | |
| tree | 6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/web_service/telemetry_json.cpp | |
| parent | Merge pull request #4381 from Morph1984/fix-open-folder-installed-title (diff) | |
| download | yuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.tar.gz yuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.tar.xz yuzu-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.zip | |
common/telemetry: Migrate namespace into the Common namespace
Migrates the Telemetry namespace into the Common namespace to make the
code consistent with the rest of our common code.
Diffstat (limited to 'src/web_service/telemetry_json.cpp')
| -rw-r--r-- | src/web_service/telemetry_json.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web_service/telemetry_json.cpp b/src/web_service/telemetry_json.cpp index 7a480e33c..c89a3a0db 100644 --- a/src/web_service/telemetry_json.cpp +++ b/src/web_service/telemetry_json.cpp | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | 10 | ||
| 11 | namespace WebService { | 11 | namespace WebService { |
| 12 | 12 | ||
| 13 | namespace Telemetry = Common::Telemetry; | ||
| 14 | |||
| 13 | struct TelemetryJson::Impl { | 15 | struct TelemetryJson::Impl { |
| 14 | Impl(std::string host, std::string username, std::string token) | 16 | Impl(std::string host, std::string username, std::string token) |
| 15 | : host{std::move(host)}, username{std::move(username)}, token{std::move(token)} {} | 17 | : host{std::move(host)}, username{std::move(username)}, token{std::move(token)} {} |