From 9aef849bc182accbb029ede50cf6133ae9910030 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Tue, 20 Jan 2026 12:59:35 +0100 Subject: Added type info to Schema --- modules/codec/c++/schema.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules') diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp index 8c398b7..decc027 100644 --- a/modules/codec/c++/schema.hpp +++ b/modules/codec/c++/schema.hpp @@ -65,10 +65,12 @@ struct Union...> { template struct Array { static constexpr string_literal name = "Array"; + using ValueType = T; }; template struct FixedArray { static constexpr string_literal name = "FixedArray"; + using ValueType = T; }; template struct Tuple { -- cgit v1.2.3