fixed_typemap.hpp: remove useless reporters

This commit is contained in:
Nekotekina 2021-01-05 16:08:11 +03:00
parent d1e1c14dc3
commit 673e84920b
2 changed files with 1 additions and 23 deletions

View file

@ -2113,16 +2113,4 @@ void Emulator::ConfigurePPUCache()
}
}
template <>
void stx::manual_fixed_typemap<void>::init_reporter(unsigned long long created) const noexcept
{
sys_log.notice("[ord:%u] Object was created", created);
}
template <>
void stx::manual_fixed_typemap<void>::destroy_reporter(unsigned long long created) const noexcept
{
sys_log.notice("[ord:%u] Object is destroying", created);
}
Emulator Emu;