From 4045f418e8f950ddd115338ba219551d09eab564 Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 17 Sep 2026 15:57:17 +0000 Subject: [PATCH] 2026-09-17 15:57:17 Signed-off-by: lizzie --- src/core/hle/service/hle_ipc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/hle/service/hle_ipc.h b/src/core/hle/service/hle_ipc.h index b1c7daa91e..33038292c4 100644 --- a/src/core/hle/service/hle_ipc.h +++ b/src/core/hle/service/hle_ipc.h @@ -293,16 +293,16 @@ public: * @param buffer_index The buffer in particular to write to. */ template - requires !std::is_pointer_v - && std::contiguous_iterator + requires (!std::is_pointer_v + && std::contiguous_iterator) std::size_t WriteBuffer(const T& data, std::size_t buffer_index = 0) const { using C = typename T::value_type; static_assert(std::is_trivially_copyable_v, "Container to WriteBuffer must contain trivially copyable objects"); return WriteBuffer(std::data(data), std::size(data) * sizeof(C), buffer_index); } template - requires !std::is_pointer_v - && !std::contiguous_iterator + requires (!std::is_pointer_v + && !std::contiguous_iterator) std::size_t WriteBuffer(const T& data, std::size_t buffer_index = 0) const { static_assert(std::is_trivially_copyable_v, "T must be trivially copyable"); return WriteBuffer(&data, sizeof(T), buffer_index);