COMP: Remove warning on windows
This commit is contained in:
parent
6d37630770
commit
3e020b3dcc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue