mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +00:00
- 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:
parent
3fc0d0d794
commit
4c3c32dca6
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue