diff options
author | Fred Hornsey <hornseyf@objectcomputing.com> | 2021-07-08 17:26:09 -0500 |
---|---|---|
committer | Fred Hornsey <hornseyf@objectcomputing.com> | 2021-07-08 17:27:41 -0500 |
commit | f818b6ca180b86dc00be9bbc21d2e67f40d9dddf (patch) | |
tree | 71de42b548ff43c55ce487be61f1b3fe475cfb28 /ACE | |
parent | 0f50d148543e52e8c58005aad78976897bc4bacc (diff) | |
download | ATCD-f818b6ca180b86dc00be9bbc21d2e67f40d9dddf.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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/ace/Basic_Types.h b/ACE/ace/Basic_Types.h index 20a30081249..44ca7b918bf 100644 --- a/ACE/ace/Basic_Types.h +++ b/ACE/ace/Basic_Types.h @@ -582,8 +582,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 */ |