From 1964f4bbb39d1286d98893881db17f1d7d146145 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 9 Oct 2018 14:45:22 -0400 Subject: telemetry_session: Remove unimplemented FinalizeAsyncJob prototype This isn't implemented anywhere, so it can just be removed. --- src/core/telemetry_session.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/core/telemetry_session.h') diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h index cec271df0..266db434c 100644 --- a/src/core/telemetry_session.h +++ b/src/core/telemetry_session.h @@ -30,8 +30,6 @@ public: field_collection.AddField(type, name, std::move(value)); } - static void FinalizeAsyncJob(); - private: Telemetry::FieldCollection field_collection; ///< Tracks all added fields for the session std::unique_ptr backend; ///< Backend interface that logs fields -- cgit v1.2.3 From 8aa4889e76c401ab41e7fd733f77376dbcdb4def Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 9 Oct 2018 14:47:24 -0400 Subject: telemetry_session: Add missing includes Prevents potential compilation issues in the future by including missing headers for certain functions and types. --- src/core/telemetry_session.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/telemetry_session.h') diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h index 266db434c..3438acd29 100644 --- a/src/core/telemetry_session.h +++ b/src/core/telemetry_session.h @@ -5,6 +5,7 @@ #pragma once #include +#include #include "common/telemetry.h" namespace Core { -- cgit v1.2.3 From e3b4d31f4ec689b1e4b16db124fb64dfc122ca07 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 9 Oct 2018 14:49:15 -0400 Subject: telemetry_session: Remove doxygen comment for a non-existent parameter There's no "func" parameter, so this can just be removed. --- src/core/telemetry_session.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/core/telemetry_session.h') diff --git a/src/core/telemetry_session.h b/src/core/telemetry_session.h index 3438acd29..2a4845797 100644 --- a/src/core/telemetry_session.h +++ b/src/core/telemetry_session.h @@ -52,7 +52,6 @@ u64 RegenerateTelemetryId(); * Verifies the username and token. * @param username yuzu username to use for authentication. * @param token yuzu token to use for authentication. - * @param func A function that gets exectued when the verification is finished * @returns Future with bool indicating whether the verification succeeded */ bool VerifyLogin(const std::string& username, const std::string& token); -- cgit v1.2.3