summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2021-07-08 17:26:09 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2021-07-08 19:30:05 -0500
commit860746a594bf7bd04ee2501a8d8b5c7d678934c7 (patch)
treef5fc0e22596c14c0ed4a13c0b00da05cd9550141 /ACE
parent1655769f404204483e8ee28a686f765df332be71 (diff)
downloadATCD-860746a594bf7bd04ee2501a8d8b5c7d678934c7.tar.gz
Attempt to Fix Coverity Issues from #840
https://github.com/DOCGroup/ACE_TAO/pull/840 Because the main set of issues in `coerce_value` was caused by applying the existing pattern, the issues caused by the existing code should also be fixed.
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ace/Basic_Types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/ace/Basic_Types.h b/ACE/ace/Basic_Types.h
index ac7a13116e3..8ef1b265d64 100644
--- a/ACE/ace/Basic_Types.h
+++ b/ACE/ace/Basic_Types.h
@@ -686,8 +686,10 @@ ACE_END_VERSIONED_NAMESPACE_DECL
// These use ANSI/IEEE format.
#define ACE_FLT_MAX 3.402823466e+38F
#define ACE_FLT_MIN 1.175494351e-38F
+#define ACE_FLT_LOWEST -(ACE_FLT_MAX)
#define ACE_DBL_MAX 1.7976931348623158e+308
#define ACE_DBL_MIN 2.2250738585072014e-308
+#define ACE_DBL_LOWEST -(ACE_DBL_MAX)
# include /**/ "ace/post.h"
#endif /* ACE_BASIC_TYPES_H */