mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 20:37:58 -05:00
telemetry_session: Use TelemetryJson to submit real telemetry.
This commit is contained in:
@ -9,8 +9,6 @@
|
||||
|
||||
namespace WebService {
|
||||
|
||||
TelemetryJson::TelemetryJson() {}
|
||||
|
||||
template <class T>
|
||||
void TelemetryJson::Serialize(Telemetry::FieldType type, const std::string& name, T value) {
|
||||
sections[static_cast<u8>(type)][name] = value;
|
||||
|
@ -17,7 +17,7 @@ namespace WebService {
|
||||
*/
|
||||
class TelemetryJson : public Telemetry::VisitorInterface {
|
||||
public:
|
||||
TelemetryJson();
|
||||
TelemetryJson() = default;
|
||||
~TelemetryJson() = default;
|
||||
|
||||
void Visit(const Telemetry::Field<bool>& field) override;
|
||||
|
Reference in New Issue
Block a user