SystemMonitor: Remove unused functions and enable warning globally

These two helpers were the only unused functions clang could detect in
the entire codebase. Now that's commitment to no dead code :^)
This commit is contained in:
Andrew Kaster 2022-01-03 02:58:56 -07:00 committed by Brian Gianforcaro
parent f8ea9cd64e
commit 5cbc734081
2 changed files with 0 additions and 11 deletions

View file

@ -201,7 +201,6 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang$")
add_compile_options(-Wno-null-pointer-subtraction)
add_compile_options(-Wno-unneeded-internal-declaration)
add_compile_options(-Wno-unused-const-variable)
add_compile_options(-Wno-unused-function)
add_compile_options(-Wno-unused-private-field)
add_compile_options(-fno-aligned-allocation)
add_compile_options(-fconstexpr-steps=16777216)

View file

@ -67,16 +67,6 @@ static inline u64 page_count_to_bytes(size_t count)
return count * 4096;
}
static inline u64 page_count_to_kb(u64 count)
{
return page_count_to_bytes(count) / 1024;
}
static inline u64 bytes_to_kb(u64 bytes)
{
return bytes / 1024;
}
void MemoryStatsWidget::refresh()
{
auto proc_memstat = Core::File::construct("/proc/memstat");