diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-10-22 18:33:00 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-10-22 18:33:00 +0200 |
commit | 05a7fa9a2815b63b5b6f7eea107807e33aa62137 (patch) | |
tree | f810107a00dd88d8135be2db0fb4dafd736c9ad5 /modules/codec/c++/schema.hpp | |
parent | 98cf3372f2ed4e61ccb0acc522549aaa3d18fd59 (diff) |
Trying to get the reference working
Diffstat (limited to 'modules/codec/c++/schema.hpp')
-rw-r--r-- | modules/codec/c++/schema.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp index c2cacd5..c0fb66f 100644 --- a/modules/codec/c++/schema.hpp +++ b/modules/codec/c++/schema.hpp @@ -195,6 +195,7 @@ template <class... T> struct Interface { template <class... Requests, class... Responses, string_literal... Names> struct Interface<Member<Function<Requests, Responses>,Names>...> { static constexpr string_literal name = "Interface"; + static constexpr uint64_t size = sizeof...(Responses); }; // NOLINTEND |