tests: Fix failing test and improve msvc setup
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run

This commit is contained in:
kd-11 2025-05-02 00:38:51 +03:00 committed by kd-11
parent 947c6ec3e1
commit b25276deec
4 changed files with 176 additions and 147 deletions

View file

@ -23,9 +23,9 @@ namespace rsx
Ty* _data = _local_capacity ? reinterpret_cast<Ty*>(_local_storage) : nullptr;
u32 _size = 0;
inline u64 offset(const_iterator pos)
inline u32 offset(const_iterator pos)
{
return (_data) ? u64(pos - _data) : 0ull;
return (_data) ? u32(pos - _data) : 0u;
}
bool is_local_storage() const