- fixed compilation of non-x86 targets

src/common/utility/x86.cpp:48:6: error: ambiguating new declaration of ‘void DumpCPUInfo(const CPUInfo*)’
This commit is contained in:
alexey.lysiuk 2020-06-07 21:52:58 +03:00
parent 3fc0d0d794
commit 4c3c32dca6

View file

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