summaryrefslogtreecommitdiffstats
path: root/src/common/telemetry.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-08-20 20:29:13 +0200
committerGitHub <noreply@github.com>2020-08-20 20:29:13 +0200
commit3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (patch)
tree3a0142ea3800c4b79b56cfb66925bdc78c526808 /src/common/telemetry.cpp
parentMerge pull request #4547 from lioncash/header-concept (diff)
parentcommon/telemetry: Migrate namespace into the Common namespace (diff)
downloadyuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.gz
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.bz2
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.lz
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.xz
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.tar.zst
yuzu-3ea3de4ecd9a03da23b9e823ecc454481a60c3b9.zip
Diffstat (limited to '')
-rw-r--r--src/common/telemetry.cpp4
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 @@
#include "common/x64/cpu_detect.h"
#endif
-namespace Telemetry {
+namespace Common::Telemetry {
void FieldCollection::Accept(VisitorInterface& visitor) const {
for (const auto& field : fields) {
@@ -88,4 +88,4 @@ void AppendOSInfo(FieldCollection& fc) {
#endif
}
-} // namespace Telemetry
+} // namespace Common::Telemetry