mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
shared_ptr.hpp: add trivial conversion for shared/single types
These conversions don't exist in std::shared_ptr-alike types. But I don't want to bother with == operators until we have proper C++20. Removed trivial conversion for atomic_ptr because it's heavyweight.
This commit is contained in:
parent
3a0b3a85a5
commit
77aa9e58f2
4 changed files with 31 additions and 8 deletions
|
@ -1049,7 +1049,13 @@ void ppu_thread::fast_call(u32 addr, u32 rtoc)
|
|||
|
||||
if (!_this->ppu_tname.is_equal(name_cache)) [[unlikely]]
|
||||
{
|
||||
name_cache = _this->ppu_tname.load();
|
||||
_this->ppu_tname.peek_op([&](const shared_ptr<std::string>& ptr)
|
||||
{
|
||||
if (ptr != name_cache)
|
||||
{
|
||||
name_cache = ptr;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const auto cia = _this->cia;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue