diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-08-06 13:20:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-10-15 21:16:44 (GMT) |
commit | 2db55ffa56a69c4b55410afb9b40ab20f4025837 (patch) | |
tree | 78a498981c6d77fa0b148db021ca628b2d44a57b /Source/cmSystemTools.cxx | |
parent | a7596fef6e8d6938ce0d7fcba47e896f288b12b4 (diff) | |
download | CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.zip CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.gz CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.bz2 |
Remove borland workarounds.
CMake 3.0 is the last release to require to be able to build with
Borland.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index fbb4416..baf7582 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) { |