diff options
| author | 2020-08-20 14:29:13 -0400 | |
|---|---|---|
| committer | 2020-08-20 14:29:13 -0400 | |
| commit | 3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (patch) | |
| tree | 3a0142ea3800c4b79b56cfb66925bdc78c526808 /src/common/telemetry.cpp | |
| parent | Merge pull request #4547 from lioncash/header-concept (diff) | |
| parent | common/telemetry: Migrate namespace into the Common namespace (diff) | |
| download | yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.gz yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.xz yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.zip | |
Merge pull request #4546 from lioncash/telemetry
common/telemetry: Migrate namespace into the Common namespace
Diffstat (limited to 'src/common/telemetry.cpp')
| -rw-r--r-- | src/common/telemetry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/telemetry.cpp b/src/common/telemetry.cpp index 16d42facd..6241d08b3 100644 --- a/src/common/telemetry.cpp +++ b/src/common/telemetry.cpp | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include "common/x64/cpu_detect.h" | 12 | #include "common/x64/cpu_detect.h" |
| 13 | #endif | 13 | #endif |
| 14 | 14 | ||
| 15 | namespace Telemetry { | 15 | namespace Common::Telemetry { |
| 16 | 16 | ||
| 17 | void FieldCollection::Accept(VisitorInterface& visitor) const { | 17 | void FieldCollection::Accept(VisitorInterface& visitor) const { |
| 18 | for (const auto& field : fields) { | 18 | for (const auto& field : fields) { |
| @@ -88,4 +88,4 @@ void AppendOSInfo(FieldCollection& fc) { | |||
| 88 | #endif | 88 | #endif |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | } // namespace Telemetry | 91 | } // namespace Common::Telemetry |