From 5003b405aa400d5d9eb171b9763728887a661398 Mon Sep 17 00:00:00 2001 From: Matt Morley Date: Sun, 18 Aug 2024 17:17:41 -0700 Subject: [PATCH] gg --- .../native/include/photon/dataflow/structures/Packet.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/photon-targeting/src/main/native/include/photon/dataflow/structures/Packet.h b/photon-targeting/src/main/native/include/photon/dataflow/structures/Packet.h index 55c55a242f..e8bcfedd24 100644 --- a/photon-targeting/src/main/native/include/photon/dataflow/structures/Packet.h +++ b/photon-targeting/src/main/native/include/photon/dataflow/structures/Packet.h @@ -17,6 +17,7 @@ #pragma once +#include #include #include #include @@ -170,8 +171,7 @@ struct SerdeType> { static constexpr std::string_view GetSchema() { // TODO: this gets us the plain type name of T, but this is not schema JSON // compliant! - static std::string name = wpi::Demangle(typeid(T).name()); - return name; + return "TODO[?]" } }; @@ -200,8 +200,7 @@ struct SerdeType> { static constexpr std::string_view GetSchema() { // TODO: this gets us the plain type name of T, but this is not schema JSON // compliant! - static std::string name = wpi::Demangle(typeid(T).name()); - return name; + return "TODO?" } };