[Cmake-commits] [cmake-commits] king committed cmStandardIncludes.h 1.78 1.79

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Nov 24 08:57:08 EST 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv29516/Source

Modified Files:
	cmStandardIncludes.h 
Log Message:
Suppress Intel float-equality test warnings

We suppress Intel warning 1572 because the cases where we do equality
tests are valid.  Since this project does not do numerical computations
we need not worry about real instances against which this warning
protects.


Index: cmStandardIncludes.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmStandardIncludes.h,v
retrieving revision 1.78
retrieving revision 1.79
diff -C 2 -d -r1.78 -r1.79
*** cmStandardIncludes.h	10 Nov 2009 13:09:54 -0000	1.78
--- cmStandardIncludes.h	24 Nov 2009 13:57:06 -0000	1.79
***************
*** 38,41 ****
--- 38,42 ----
  #ifdef __ICL
  #pragma warning ( disable : 985 )
+ #pragma warning ( disable : 1572 ) /* floating-point equality test */
  #endif
  



More information about the Cmake-commits mailing list