diff options
author | Mai <mathew1800@gmail.com> | 2022-10-26 17:12:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 17:12:48 +0200 |
commit | 041eb5bf57f4db8609341c77bd5d38ddcd8b2d80 (patch) | |
tree | f8df340674b1480f3e0f53a9d21b7fa6fbb350f3 /src/core | |
parent | Merge pull request #9128 from abouvier/patch-1 (diff) | |
parent | concepts: Use the std::contiguous_iterator concept (diff) | |
download | yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar.gz yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar.bz2 yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar.lz yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar.xz yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.tar.zst yuzu-041eb5bf57f4db8609341c77bd5d38ddcd8b2d80.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index a0522bca0..1083638a9 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h @@ -304,7 +304,7 @@ public: */ template <typename T, typename = std::enable_if_t<!std::is_pointer_v<T>>> std::size_t WriteBuffer(const T& data, std::size_t buffer_index = 0) const { - if constexpr (Common::IsSTLContainer<T>) { + if constexpr (Common::IsContiguousContainer<T>) { using ContiguousType = typename T::value_type; static_assert(std::is_trivially_copyable_v<ContiguousType>, "Container to WriteBuffer must contain trivially copyable objects"); |