* Adjustment: Add static keyword to getCPUInformation in POSIXCPUInfo.

This commit is contained in:
Robert MacGregor 2022-05-24 21:38:03 -04:00
parent 3be4f5983e
commit 0df555f9eb

View file

@ -48,7 +48,7 @@ static inline void ltrim(std::string &s)
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
}
void getCPUInformation()
static void getCPUInformation()
{
std::string vendorString;
std::string brandString;