mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
Remove std typeinfo
This commit is contained in:
parent
66581d115b
commit
92e5bb88e8
2 changed files with 8 additions and 13 deletions
|
@ -2114,15 +2114,15 @@ void Emulator::ConfigurePPUCache()
|
|||
}
|
||||
|
||||
template <>
|
||||
void stx::manual_fixed_typemap<void>::init_reporter(const char* name, unsigned long long created) const noexcept
|
||||
void stx::manual_fixed_typemap<void>::init_reporter(unsigned long long created) const noexcept
|
||||
{
|
||||
sys_log.notice("[ord:%u] Object '%s' was created", created, name);
|
||||
sys_log.notice("[ord:%u] Object was created", created);
|
||||
}
|
||||
|
||||
template <>
|
||||
void stx::manual_fixed_typemap<void>::destroy_reporter(const char* name, unsigned long long created) const noexcept
|
||||
void stx::manual_fixed_typemap<void>::destroy_reporter(unsigned long long created) const noexcept
|
||||
{
|
||||
sys_log.notice("[ord:%u] Object '%s' is destroying", created, name);
|
||||
sys_log.notice("[ord:%u] Object is destroying", created);
|
||||
}
|
||||
|
||||
Emulator Emu;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue