summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-21 20:52:29 (GMT)
committerBrad King <brad.king@kitware.com>2001-03-21 20:52:29 (GMT)
commit408cad388a63c6bede9e137c08f3ec57c0e4833b (patch)
tree11f588ae909e4f1bad30df33a51c5d4d95c4fe69 /Source/cmStandardIncludes.h
parent20fb92d80b8332acf5c07a65d7bbe427ea832922 (diff)
downloadCMake-408cad388a63c6bede9e137c08f3ec57c0e4833b.zip
CMake-408cad388a63c6bede9e137c08f3ec57c0e4833b.tar.gz
CMake-408cad388a63c6bede9e137c08f3ec57c0e4833b.tar.bz2
ERR: Added pragma to disable symbol length warning for Intel compiler.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index c5bc001..4664f46 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -32,6 +32,10 @@
#define for if(false) {} else for
#endif
+#ifdef __ICL
+#pragma warning ( disable : 985 )
+#endif
+
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
#include <fstream>
#include <iostream>