summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index 8128445fd..0906b8cfb 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -16,7 +16,6 @@
16#include "core/hle/kernel/hle_ipc.h" 16#include "core/hle/kernel/hle_ipc.h"
17#include "core/hle/kernel/k_client_port.h" 17#include "core/hle/kernel/k_client_port.h"
18#include "core/hle/kernel/k_session.h" 18#include "core/hle/kernel/k_session.h"
19#include "core/hle/kernel/object.h"
20#include "core/hle/result.h" 19#include "core/hle/result.h"
21 20
22namespace IPC { 21namespace IPC {
@@ -381,12 +380,6 @@ public:
381 template <typename T> 380 template <typename T>
382 T PopRaw(); 381 T PopRaw();
383 382
384 template <typename T>
385 T* GetMoveObject(std::size_t index);
386
387 template <typename T>
388 T* GetCopyObject(std::size_t index);
389
390 template <class T> 383 template <class T>
391 std::shared_ptr<T> PopIpcInterface() { 384 std::shared_ptr<T> PopIpcInterface() {
392 ASSERT(context->Session()->IsDomain()); 385 ASSERT(context->Session()->IsDomain());
@@ -491,14 +484,4 @@ void RequestParser::Pop(First& first_value, Other&... other_values) {
491 Pop(other_values...); 484 Pop(other_values...);
492} 485}
493 486
494template <typename T>
495T* RequestParser::GetMoveObject(std::size_t index) {
496 return context->GetMoveObject<T>(index);
497}
498
499template <typename T>
500T* RequestParser::GetCopyObject(std::size_t index) {
501 return context->GetCopyObject<T>(index);
502}
503
504} // namespace IPC 487} // namespace IPC