diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-09-24 07:21:07 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-09-24 21:52:05 +0200 |
commit | 73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83 (patch) | |
tree | 31ecba073091bae2a424f3d0b6215591408edca3 /src/video_core/texture_cache | |
parent | ci: Update clang format version (diff) | |
download | yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar.gz yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar.bz2 yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar.lz yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar.xz yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.tar.zst yuzu-73666fb2622a5f6a7ab9f92c9a46ce2e215c4e83.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/slot_vector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/slot_vector.h b/src/video_core/texture_cache/slot_vector.h index 74cd3c9d8..50df06409 100644 --- a/src/video_core/texture_cache/slot_vector.h +++ b/src/video_core/texture_cache/slot_vector.h @@ -31,8 +31,8 @@ struct SlotId { }; template <class T> -requires std::is_nothrow_move_assignable_v<T>&& - std::is_nothrow_move_constructible_v<T> class SlotVector { +requires std::is_nothrow_move_assignable_v<T> && std::is_nothrow_move_constructible_v<T> +class SlotVector { public: class Iterator { friend SlotVector<T>; |