summaryrefslogtreecommitdiff
path: root/modules/codec/c++/schema.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++/schema.hpp')
-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;
};