summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/c++
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-06-12 15:04:42 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-06-12 15:04:42 +0200
commite4e49a117702945066e3e279fa0f005200400cb7 (patch)
tree3e9bab0804083461c9ef0732a47abba1fb8a9fdf /modules/remote-sycl/c++
parent6831edddd22d2d8dbb73c88fb612c0bdd5b8ba19 (diff)
Separated Encoding and Storage approaches
Diffstat (limited to 'modules/remote-sycl/c++')
-rw-r--r--modules/remote-sycl/c++/remote.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/remote-sycl/c++/remote.hpp b/modules/remote-sycl/c++/remote.hpp
index d311ca5..d956314 100644
--- a/modules/remote-sycl/c++/remote.hpp
+++ b/modules/remote-sycl/c++/remote.hpp
@@ -190,14 +190,12 @@ public:
/**
* Rpc call
*/
- template<string_literal Name>
+ template<string_literal Name, typename ClientAllocation>
error_or<
id<
typename schema_member_type<Name, Iface>::type::ResponseT
>
- > call(data_or_id<typename schema_member_type<Name, Iface>::type::RequestT, Encoding> input){
-
-
+ > call(data_or_id<typename schema_member_type<Name, Iface>::type::RequestT, ClientAllocation> input){
/**
* First check if it's data or an id.