diff options
author | Username404-59 <53659497+Username404-59@users.noreply.github.com> | 2024-05-13 21:02:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 21:02:03 +0200 |
commit | f02f9f6ff6b4ee83190373aec0b162482be7bf58 (patch) | |
tree | 03adfe88d1025cff5f0509eb754350589314019a | |
parent | ce7a1877895ea494ffb79b2e85e48ec6747954f9 (diff) |
video-ps3eye: Fix compilation with clang
-rw-r--r-- | video-ps3eye/shm-layout.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video-ps3eye/shm-layout.hpp b/video-ps3eye/shm-layout.hpp index 79680e63..65b0a4f1 100644 --- a/video-ps3eye/shm-layout.hpp +++ b/video-ps3eye/shm-layout.hpp @@ -30,7 +30,7 @@ struct shm_out }; }; -alignas(64) struct shm { +struct alignas(64) shm { shm_out out; [[maybe_unused]] const char _padding[128 - sizeof(shm_out) % 128]; // NOLINT shm_in in; |