summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/ipc_helpers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index 40e6c4897..0f1077d9e 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -98,9 +98,9 @@ public:
98 PushRaw(data_payload_header); 98 PushRaw(data_payload_header);
99 } 99 }
100 100
101 template <class T> 101 template <class T, class... Args>
102 void PushIpcInterface() { 102 void PushIpcInterface(Args&&... args) {
103 context->AddDomainObject(std::make_shared<T>()); 103 context->AddDomainObject(std::make_shared<T>(std::forward<Args>(args)...));
104 } 104 }
105 105
106 // Validate on destruction, as there shouldn't be any case where we don't want it 106 // Validate on destruction, as there shouldn't be any case where we don't want it