Service/NIM: convert to ServiceFramework
This commit is contained in:
@@ -116,9 +116,6 @@ public:
|
||||
void PushRaw(const T& value);
|
||||
|
||||
// TODO : ensure that translate params are added after all regular params
|
||||
template <typename... H>
|
||||
[[deprecated]] void PushCopyHandles(H... handles);
|
||||
|
||||
template <typename... O>
|
||||
void PushCopyObjects(Kernel::SharedPtr<O>... pointers);
|
||||
|
||||
@@ -185,11 +182,6 @@ void RequestBuilder::Push(const First& first_value, const Other&... other_values
|
||||
Push(other_values...);
|
||||
}
|
||||
|
||||
template <typename... H>
|
||||
inline void RequestBuilder::PushCopyHandles(H... handles) {
|
||||
PushCopyHLEHandles(handles...);
|
||||
}
|
||||
|
||||
template <typename... H>
|
||||
inline void RequestBuilder::PushCopyHLEHandles(H... handles) {
|
||||
Push(CopyHandleDesc(sizeof...(H)));
|
||||
|
Reference in New Issue
Block a user