summaryrefslogtreecommitdiff
path: root/modules/codec/c++
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-10-22 14:24:32 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-10-22 14:24:32 +0200
commit98cf3372f2ed4e61ccb0acc522549aaa3d18fd59 (patch)
tree10f876ed648977c6246496801a4525abf123adf1 /modules/codec/c++
parentf2a1a3f56768d9aa03796808206f067daa5e0aa0 (diff)
Fixing interface deduction type
Diffstat (limited to 'modules/codec/c++')
-rw-r--r--modules/codec/c++/schema.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/codec/c++/schema.hpp b/modules/codec/c++/schema.hpp
index 4bd544b..c2cacd5 100644
--- a/modules/codec/c++/schema.hpp
+++ b/modules/codec/c++/schema.hpp
@@ -340,7 +340,7 @@ struct schema_func_list_helper {
template<typename F0, typename... Funcs>
struct schema_func_list_helper<F0,Funcs...> {
using Type = typename tmpl_concat<
- tmpl_group<typename F0::Request, typename F0::Response>,
+ tmpl_group<typename F0::ValueType::RequestT, typename F0::ValueType::ResponseT>,
typename schema_func_list_helper<Funcs...>::Type
>::type;
};