summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-13 13:49:01 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-13 13:49:01 (GMT)
commit3e020b3dccd0599bda35f801b54d35092833ee0e (patch)
tree64aac0dbdb49904725bc502a8b93e44b77810c2b /Source/kwsys
parent6d376307706f91f3c5ac77afa6f64a99a953e634 (diff)
downloadCMake-3e020b3dccd0599bda35f801b54d35092833ee0e.zip
CMake-3e020b3dccd0599bda35f801b54d35092833ee0e.tar.gz
CMake-3e020b3dccd0599bda35f801b54d35092833ee0e.tar.bz2
COMP: Remove warning on windows
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/SystemTools.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index a9193bd..a45ce40 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -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;