aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/telemetry_session.h
diff options
context:
space:
mode:
authorLioncash <[email protected]>2020-08-18 14:21:50 -0400
committerLioncash <[email protected]>2020-08-18 15:08:32 -0400
commitf6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4 (patch)
tree6ba40b5d404c76f1f8be55f0e592afab83ab6563 /src/core/telemetry_session.h
parentbea9ed2548abfa738d3381a152e7ece42efbf08d (diff)
downloadyuzu-mainline-f6bb905182b31a4ee4ccffe7d56b8743cf0ca3b4.tar.gz
yuzu-mainline-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/core/telemetry_session.h')
-rw-r--r--src/core/telemetry_session.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h
index 17ac22377..66789d4bd 100644
--- a/src/core/telemetry_session.h
+++ b/src/core/telemetry_session.h
@@ -52,7 +52,7 @@ public:
* @param value Value for the field to add.
*/
template <typename T>
- void AddField(Telemetry::FieldType type, const char* name, T value) {
+ void AddField(Common::Telemetry::FieldType type, const char* name, T value) {
field_collection.AddField(type, name, std::move(value));
}
@@ -63,7 +63,8 @@ public:
bool SubmitTestcase();
private:
- Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session
+ /// Tracks all added fields for the session
+ Common::Telemetry::FieldCollection field_collection;
};
/**