summaryrefslogtreecommitdiff
path: root/ACE/ace
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-06-28 07:33:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-06-28 07:33:05 +0000
commit57ec7193b5ee6606565d3328f88f0db4ba341a5f (patch)
tree8e747edbffa693f6f4d474867470c2e2ee4dafe6 /ACE/ace
parent6b0c84d2c70835442301a3bd04670f6ee5c78936 (diff)
downloadATCD-57ec7193b5ee6606565d3328f88f0db4ba341a5f.tar.gz
Thu Jun 28 07:32:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace')
-rw-r--r--ACE/ace/Truncate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Truncate.h b/ACE/ace/Truncate.h
index 28bc27dabf6..cbb332700ff 100644
--- a/ACE/ace/Truncate.h
+++ b/ACE/ace/Truncate.h
@@ -28,16 +28,16 @@
#include "ace/Numeric_Limits.h"
#if defined (ACE_LACKS_LONGLONG_T) \
- || defined (__BORLANDC__) && __BORLANDC__ <= 0x590
+ || defined (__BORLANDC__) && __BORLANDC__ < 0x590
# include "ace/Basic_Types.h"
-#endif /* ACE_LACKS_LONGLONG_T || __BORLANDC__ <= 0x590 */
+#endif /* ACE_LACKS_LONGLONG_T || __BORLANDC__ < 0x590 */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
namespace ACE_Utils
{
-#if !defined (__BORLANDC__) || __BORLANDC__ > 0x590
+#if !defined (__BORLANDC__) || __BORLANDC__ >= 0x590
template<typename T> struct Sign_Check;
@@ -966,7 +966,7 @@ namespace ACE_Utils
return truncator() (val);
}
-#endif /* !__BORLANDC__ || __BORLANDC__ > 0x590 */
+#endif /* !__BORLANDC__ || __BORLANDC__ >= 0x590 */
} // namespace ACE_Utils