summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar Morph2022-10-26 00:41:54 -0400
committerGravatar Morph2022-10-26 00:41:54 -0400
commit8b4d5aeb4f01348312ca38555d7951ff54b23fc3 (patch)
treef8df340674b1480f3e0f53a9d21b7fa6fbb350f3 /src/core/hle/kernel
parentMerge pull request #9128 from abouvier/patch-1 (diff)
downloadyuzu-8b4d5aeb4f01348312ca38555d7951ff54b23fc3.tar.gz
yuzu-8b4d5aeb4f01348312ca38555d7951ff54b23fc3.tar.xz
yuzu-8b4d5aeb4f01348312ca38555d7951ff54b23fc3.zip
concepts: Use the std::contiguous_iterator concept
This also covers std::span, which does not have a const iterator. Also renames IsSTLContainer to IsContiguousContainer to explicitly convey its semantics.
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/hle_ipc.h2
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:
304 */ 304 */
305 template <typename T, typename = std::enable_if_t<!std::is_pointer_v<T>>> 305 template <typename T, typename = std::enable_if_t<!std::is_pointer_v<T>>>
306 std::size_t WriteBuffer(const T& data, std::size_t buffer_index = 0) const { 306 std::size_t WriteBuffer(const T& data, std::size_t buffer_index = 0) const {
307 if constexpr (Common::IsSTLContainer<T>) { 307 if constexpr (Common::IsContiguousContainer<T>) {
308 using ContiguousType = typename T::value_type; 308 using ContiguousType = typename T::value_type;
309 static_assert(std::is_trivially_copyable_v<ContiguousType>, 309 static_assert(std::is_trivially_copyable_v<ContiguousType>,
310 "Container to WriteBuffer must contain trivially copyable objects"); 310 "Container to WriteBuffer must contain trivially copyable objects");