You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/10/04 02:06:15 UTC

svn commit: r452680 - /incubator/stdcxx/trunk/include/limits

Author: sebor
Date: Tue Oct  3 17:06:15 2006
New Revision: 452680

URL: http://svn.apache.org/viewvc?view=rev&rev=452680
Log:
2006-10-03  Martin Sebor  <se...@roguewave.com>

	* limits (_RWSTD_FLT_HAS_DENORM, _RWSTD_DBL_HAS_DENORM,
	_RWSTD_LDBL_HAS_DENORM): Defined macros to false when
	not #defined at configuration time.

Modified:
    incubator/stdcxx/trunk/include/limits

Modified: incubator/stdcxx/trunk/include/limits
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/limits?view=diff&rev=452680&r1=452679&r2=452680
==============================================================================
--- incubator/stdcxx/trunk/include/limits (original)
+++ incubator/stdcxx/trunk/include/limits Tue Oct  3 17:06:15 2006
@@ -58,10 +58,21 @@
 #endif   // _RWSTD_NO_DBL_TRAPS
 
 
+#ifndef _RWSTD_FLT_HAS_DENORM
+#  define _RWSTD_FLT_HAS_DENORM  false
+#endif   // _RWSTD_FLT_HAS_DENORM
+
+#ifndef _RWSTD_DBL_HAS_DENORM
+#  define _RWSTD_DBL_HAS_DENORM  false
+#endif   // _RWSTD_DBL_HAS_DENORM
+
+#ifndef _RWSTD_LDBL_HAS_DENORM
+#  define _RWSTD_LDBL_HAS_DENORM false
+#endif   // _RWSTD_LDBL_HAS_DENORM
+
 #ifndef _RWSTD_HAS_DENORM_LOSS
 #  define _RWSTD_HAS_DENORM_LOSS false
 #endif   // _RWSTD_HAS_DENORM_LOSS
-
 
 #ifndef _RWSTD_HAS_INFINITY
 #  define _RWSTD_HAS_INFINITY    true