Fixed "unreachable code" warning message/compile error
This commit is contained in:
parent
bf6da57cbd
commit
ae1cc9505e
|
@ -116,11 +116,13 @@ CArchSystemWindows::getPlatformName() const
|
||||||
return "x86 (WOW64)";
|
return "x86 (WOW64)";
|
||||||
else
|
else
|
||||||
return "x86";
|
return "x86";
|
||||||
#endif
|
#else
|
||||||
#ifdef _AMD64_
|
#ifdef _AMD64_
|
||||||
return "x64";
|
return "x64";
|
||||||
#endif
|
#else
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in New Issue