summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-10-21 19:08:03 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-10-21 19:08:03 (GMT)
commit210230e216764144b9a0112799d4c9046c3a8dd9 (patch)
treeed6c88b0e4edf5eac1e0e000cd38b9d677ed33a2 /Source/cmSystemTools.cxx
parentae5686f8d0e4f153991d5a7c0cf7406fa7d3468c (diff)
parent2db55ffa56a69c4b55410afb9b40ab20f4025837 (diff)
downloadCMake-210230e216764144b9a0112799d4c9046c3a8dd9.zip
CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.gz
CMake-210230e216764144b9a0112799d4c9046c3a8dd9.tar.bz2
Merge topic 'remove-borland-build'
2db55ffa Remove borland workarounds.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index b0e898b..6b7009a 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -52,8 +52,7 @@
#include <sys/stat.h>
#if defined(_WIN32) && \
- (defined(_MSC_VER) || defined(__WATCOMC__) || \
- defined(__BORLANDC__) || defined(__MINGW32__))
+ (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__MINGW32__))
# include <io.h>
#endif
@@ -1649,9 +1648,6 @@ namespace{
fprintf(out, " -> %s", archive_entry_symlink(entry));
}
}
-#ifdef __BORLANDC__
-# pragma warn -8066 /* unreachable code */
-#endif
long copy_data(struct archive *ar, struct archive *aw)
{