[Cmake-commits] [cmake-commits] king committed Configure.h.in 1.15 1.16

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


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

Modified Files:
	Configure.h.in 
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: Configure.h.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/kwsys/Configure.h.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -C 2 -d -r1.15 -r1.16
*** Configure.h.in	28 Sep 2009 15:37:21 -0000	1.15
--- Configure.h.in	24 Nov 2009 13:57:06 -0000	1.16
***************
*** 26,29 ****
--- 26,32 ----
  #  pragma warn -8027 /* function not inlined.  */
  # endif
+ # if defined(__INTEL_COMPILER)
+ #  pragma warning (disable: 1572) /* floating-point equality test */
+ # endif
  #endif
  



More information about the Cmake-commits mailing list