Remove std typeinfo

This commit is contained in:
Marin Baron 2020-12-26 20:41:20 +00:00 committed by Ivan
parent 66581d115b
commit 92e5bb88e8
2 changed files with 8 additions and 13 deletions

View file

@ -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;