Skip to content
Snippets Groups Projects
Commit 409ea10c authored by Andy Cedilnik's avatar Andy Cedilnik
Browse files

COMP: Remove warning on windows

parent 8d42e9d9
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment