summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-11-13 12:39:10 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-11-13 12:39:10 (GMT)
commita875845be90ae0f04577215ac8859226fe95c7bc (patch)
tree9e1bdbee6bd91e0aaa17f1c64fbc3d3fcfb9aa6b /Source/cmSystemTools.cxx
parente28636ba610eb4f7a6e5c911555e5ebf19335b72 (diff)
downloadCMake-a875845be90ae0f04577215ac8859226fe95c7bc.zip
CMake-a875845be90ae0f04577215ac8859226fe95c7bc.tar.gz
CMake-a875845be90ae0f04577215ac8859226fe95c7bc.tar.bz2
fix warning for borland
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index f953b71..b1f999d 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1973,6 +1973,9 @@ namespace{
fprintf(out, " -> %s", archive_entry_symlink(entry));
}
}
+#ifdef __BORLANDC__
+# pragma warn -8066 /* unreachable code */
+#endif
int copy_data(struct archive *ar, struct archive *aw)
{