common/cache_management: Amend header includes

Narrows the include in the header to <cstddef>, since that's what houses
size_t's definition, meanwhile the <cstdint> include can be moved into
the cpp file.
This commit is contained in:
Lioncash
2022-11-28 10:19:51 -05:00
parent 6291eec700
commit c2c9b44749
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@
#pragma once
#include "stdlib.h"
#include <cstddef>
namespace Common {