Fixed "unreachable code" warning message/compile error

This commit is contained in:
sveith 2009-04-08 17:50:26 +00:00
parent bf6da57cbd
commit ae1cc9505e
1 changed files with 4 additions and 2 deletions

View File

@ -116,11 +116,13 @@ CArchSystemWindows::getPlatformName() const
return "x86 (WOW64)";
else
return "x86";
#endif
#else
#ifdef _AMD64_
return "x64";
#endif
#else
return "Unknown";
#endif
#endif
}
bool