summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar bunnei2020-08-20 14:29:13 -0400
committerGravatar GitHub2020-08-20 14:29:13 -0400
commit3ea3de4ecd9a03da23b9e823ecc454481a60c3b9 (patch)
tree3a0142ea3800c4b79b56cfb66925bdc78c526808 /src/common
parentMerge pull request #4547 from lioncash/header-concept (diff)
parentcommon/telemetry: Migrate namespace into the Common namespace (diff)
downloadyuzu-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 '')
-rw-r--r--src/common/telemetry.cpp4
-rw-r--r--src/common/telemetry.h4
2 files changed, 4 insertions, 4 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
15namespace Telemetry { 15namespace Common::Telemetry {
16 16
17void FieldCollection::Accept(VisitorInterface& visitor) const { 17void 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
diff --git a/src/common/telemetry.h b/src/common/telemetry.h
index 4aa299f9a..a50c5d1de 100644
--- a/src/common/telemetry.h
+++ b/src/common/telemetry.h
@@ -10,7 +10,7 @@
10#include <string> 10#include <string>
11#include "common/common_types.h" 11#include "common/common_types.h"
12 12
13namespace Telemetry { 13namespace Common::Telemetry {
14 14
15/// Field type, used for grouping fields together in the final submitted telemetry log 15/// Field type, used for grouping fields together in the final submitted telemetry log
16enum class FieldType : u8 { 16enum class FieldType : u8 {
@@ -196,4 +196,4 @@ void AppendCPUInfo(FieldCollection& fc);
196/// such as platform name, etc. 196/// such as platform name, etc.
197void AppendOSInfo(FieldCollection& fc); 197void AppendOSInfo(FieldCollection& fc);
198 198
199} // namespace Telemetry 199} // namespace Common::Telemetry