diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-18 14:21:50 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-18 15:08:32 -0400 |
commit | f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch) | |
tree | 6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/common/telemetry.cpp | |
parent | bea9ed2548abfa738d3381a152e7ece42efbf08d (diff) |
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/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 @@ #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 |