Author: sebor
Date: Tue Apr 10 21:36:32 2007
New Revision: 527383
URL: http://svn.apache.org/viewvc?view=rev&rev=527383
Log:
2007-04-10 Martin Sebor <[EMAIL PROTECTED]>
* LIMITS.cpp (<limits.h>): Removed an unnecessary #include directive
(causes compilation errors with EDG eccp -A on Linux due to the use
of the gcc #include_next extension in system headers).
Modified:
incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp
Modified: incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp?view=diff&rev=527383&r1=527382&r2=527383
==============================================================================
--- incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp (original)
+++ incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp Tue Apr 10 21:36:32 2007
@@ -1,12 +1,9 @@
// computing numerical limits
-#include "config.h"
+#include <stdio.h> // for printf()
-#ifndef _RWSTD_NO_LIMITS_H
-# include <limits.h>
-#endif // _RWSTD_NO_LIMITS_H
+#include "config.h"
-#include <stdio.h> // for printf()
// establish a dependency on the test for long long
// and #define the LONG_LONG macro used in "type.h"