- fixed DumpCPUInfo() definition for non-x64 platforms

fix #2188
This commit is contained in:
alexey.lysiuk 2023-09-26 09:48:11 +03:00
parent 3d6664c28e
commit 678cab7994

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();
}