mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
fixed_typemap.hpp: minor cleanup
This commit is contained in:
parent
e133c7a7dc
commit
bacd1698fc
2 changed files with 14 additions and 10 deletions
|
@ -1763,15 +1763,15 @@ s32 error_code::error_report(const fmt_type_info* sup, u64 arg, const fmt_type_i
|
|||
}
|
||||
|
||||
template <>
|
||||
void stx::manual_fixed_typemap<void>::init_reporter(const char* name, unsigned long long created)
|
||||
void stx::manual_fixed_typemap<void>::init_reporter(const char* name, unsigned long long created) const noexcept
|
||||
{
|
||||
sys_log.notice("Object '%s' was created [%u]", name, created);
|
||||
sys_log.notice("[ord:%u] Object '%s' was created", created, name);
|
||||
}
|
||||
|
||||
template <>
|
||||
void stx::manual_fixed_typemap<void>::destroy_reporter(const char* name, unsigned long long created)
|
||||
void stx::manual_fixed_typemap<void>::destroy_reporter(const char* name, unsigned long long created) const noexcept
|
||||
{
|
||||
sys_log.notice("Object '%s' was destroyed [%u]", name, created);
|
||||
sys_log.notice("[ord:%u] Object '%s' is destroying", created, name);
|
||||
}
|
||||
|
||||
Emulator Emu;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue