- fixed DumpCPUInfo() definition for non-x64 platforms

fix #2188
This commit is contained in:
alexey.lysiuk 2023-09-26 09:48:11 +03:00 committed by Rachael Alexanderson
parent d07de089c0
commit 72fc6a6d79

View file

@ -45,7 +45,7 @@ void CheckCPUID(CPUInfo *cpu)
cpu->DataL1LineSize = 32; // Assume a 32-byte cache line
}
FString DumpCPUInfo(const CPUInfo *cpu)
FString DumpCPUInfo(const CPUInfo *cpu, bool brief)
{
return FString();
}