summaryrefslogtreecommitdiff
path: root/modules/remote/c++/transfer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/remote/c++/transfer.hpp')
-rw-r--r--modules/remote/c++/transfer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/remote/c++/transfer.hpp b/modules/remote/c++/transfer.hpp
index f68497b..5a2e2b2 100644
--- a/modules/remote/c++/transfer.hpp
+++ b/modules/remote/c++/transfer.hpp
@@ -32,14 +32,14 @@ template<typename Schema, typename Encoding, typename Remote>
class data_client;
namespace impl {
-template<typename Encoding, typename Storage, typename T>
+template<typename Encoding, typename T>
struct data_server_redux {
using type = std::tuple<>;
};
-template<typename Encoding, typename Storage, typename... Schema>
-struct data_server_redux<Encoding, Storage, tmpl_group<Schema...>> {
- using type = std::tuple<std::unordered_map<uint64_t, data<Schema, Encoding, Storage>>...>;
+template<typename Encoding, typename... Schema>
+struct data_server_redux<Encoding, tmpl_group<Schema...>> {
+ using type = std::tuple<std::unordered_map<uint64_t, data<Schema, Encoding>>...>;
};
}
}