kern: fix warn-errors

This commit is contained in:
Michael Scire 2020-08-20 17:29:10 -07:00 committed by SciresM
parent bb1cdd8c87
commit bb11c57e7d
14 changed files with 25 additions and 12 deletions

View file

@ -472,6 +472,7 @@ namespace ams::kern {
void AddCpuTime(s32 core_id, s64 amount) {
this->cpu_time += amount;
/* TODO: Debug kernels track per-core tick counts. Should we? */
MESOSPHERE_UNUSED(core_id);
}
s64 GetCpuTime() const { return this->cpu_time; }