From 2ee472b9c7123fe8b70a14311312e268635b3700 Mon Sep 17 00:00:00 2001 From: Lectem Date: Sun, 5 Feb 2017 00:29:07 +0100 Subject: fix wwylele's comment and use typename in templates --- src/core/hle/ipc_helpers.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/hle/ipc_helpers.h') diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 68508caba..323158bb5 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -53,8 +53,8 @@ public: void Push(u32 value) { cmdbuf[index++] = value; } - template - void Push(First first_value, const Other&... other_values) { + template + void Push(const First& first_value, const Other&... other_values) { Push(first_value); Push(other_values...); } @@ -144,7 +144,7 @@ public: template void Pop(T& value); - template + template void Pop(First& first_value, Other&... other_values); Kernel::Handle PopHandle(); @@ -211,7 +211,7 @@ void RequestParser::Pop(T& value) { value = Pop(); } -template +template void RequestParser::Pop(First& first_value, Other&... other_values) { first_value = Pop(); Pop(other_values...); -- cgit v1.2.3