diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-29 03:07:34 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-29 03:07:38 +0200 |
commit | 05af9d915ced92e72e20e3a2d6db831ad5a9a8e6 (patch) | |
tree | 0d771433254e8a863750c3e39c72bcdec15ecb4d /src/core | |
parent | core/telemetry_session: Remove unused include (diff) | |
download | yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar.gz yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar.bz2 yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar.lz yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar.xz yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.tar.zst yuzu-05af9d915ced92e72e20e3a2d6db831ad5a9a8e6.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/telemetry_session.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h index 8229d1333..7d0c8d413 100644 --- a/src/core/telemetry_session.h +++ b/src/core/telemetry_session.h @@ -14,11 +14,17 @@ namespace Core { * session, logging any one-time fields. Interfaces with the telemetry backend used for submitting * data to the web service. Submits session data on close. */ -class TelemetrySession : NonCopyable { +class TelemetrySession { public: TelemetrySession(); ~TelemetrySession(); + TelemetrySession(const TelemetrySession&) = delete; + TelemetrySession& operator=(const TelemetrySession&) = delete; + + TelemetrySession(TelemetrySession&&) = delete; + TelemetrySession& operator=(TelemetrySession&&) = delete; + /** * Wrapper around the Telemetry::FieldCollection::AddField method. * @param type Type of the field to add. |