From 0df555f9eb4f309d51f3b78cb143b78925319510 Mon Sep 17 00:00:00 2001 From: Robert MacGregor Date: Tue, 24 May 2022 21:38:03 -0400 Subject: [PATCH] * Adjustment: Add static keyword to getCPUInformation in POSIXCPUInfo. --- Engine/source/platformPOSIX/POSIXCPUInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/platformPOSIX/POSIXCPUInfo.cpp b/Engine/source/platformPOSIX/POSIXCPUInfo.cpp index 14c22c284..679096bd7 100644 --- a/Engine/source/platformPOSIX/POSIXCPUInfo.cpp +++ b/Engine/source/platformPOSIX/POSIXCPUInfo.cpp @@ -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(std::isspace)))); } -void getCPUInformation() +static void getCPUInformation() { std::string vendorString; std::string brandString;