summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-02-05 17:29:44 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-02-05 19:56:20 +0100
commitf0340b8d22c8e2d9319726b8d90f9b3a3636882e (patch)
tree7a852a9e67ed22f8211f92eeda89bc56e5e979e0
parentservice: Migrate to the new UUID implementation (diff)
downloadyuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar.gz
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar.bz2
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar.lz
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar.xz
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.tar.zst
yuzu-f0340b8d22c8e2d9319726b8d90f9b3a3636882e.zip
-rw-r--r--src/core/hle/ipc_helpers.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index cf204f570..026257115 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -404,6 +404,11 @@ inline s32 RequestParser::Pop() {
return static_cast<s32>(Pop<u32>());
}
+// Ignore the -Wclass-memaccess warning on memcpy for non-trivially default constructible objects.
+#if defined(__GNUC__)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wclass-memaccess"
+#endif
template <typename T>
void RequestParser::PopRaw(T& value) {
static_assert(std::is_trivially_copyable_v<T>,
@@ -411,6 +416,9 @@ void RequestParser::PopRaw(T& value) {
std::memcpy(&value, cmdbuf + index, sizeof(T));
index += (sizeof(T) + 3) / 4; // round up to word length
}
+#if defined(__GNUC__)
+#pragma GCC diagnostic pop
+#endif
template <typename T>
T RequestParser::PopRaw() {