COMP: Remove warning on windows

This commit is contained in:
Andy Cedilnik 2005-07-13 09:49:01 -04:00
parent 6d37630770
commit 3e020b3dcc
1 changed files with 1 additions and 0 deletions

View File

@ -2062,6 +2062,7 @@ bool SystemTools::FileIsDirectory(const char* name)
bool SystemTools::FileIsSymlink(const char* name)
{
#if _WIN32
(void)name;
return false;
#else
struct stat fs;