diff options
author | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-07-19 20:00:23 +0000 |
---|---|---|
committer | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-07-19 20:00:23 +0000 |
commit | 2c635838e10029b921ea63b67138158e2d06cc38 (patch) | |
tree | d38a37b1c00c26109a226eb4122fe3813c8700db /ACE/ace/Numeric_Limits.h | |
parent | 3d671c11ba4ee33fc3caae561386296f353ce2b6 (diff) | |
download | ATCD-2c635838e10029b921ea63b67138158e2d06cc38.tar.gz |
ChangeLogTag: Thu Jul 19 19:54:22 UTC 2007 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'ACE/ace/Numeric_Limits.h')
-rw-r--r-- | ACE/ace/Numeric_Limits.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ACE/ace/Numeric_Limits.h b/ACE/ace/Numeric_Limits.h index 4fbac9d2768..d50abb19f98 100644 --- a/ACE/ace/Numeric_Limits.h +++ b/ACE/ace/Numeric_Limits.h @@ -225,7 +225,8 @@ struct ACE_Numeric_Limits static T max (void) { return std::numeric_limits<T>::max (); } }; -# if defined (ACE_WIN64) && defined (_MSC_VER) && _MSC_VER <= 1310 +# if (defined (ACE_WIN64) && defined (_MSC_VER) && _MSC_VER <= 1310) \ + || defined (ACE_LACKS_NUMERIC_LIMITS_64_BIT_TYPES) // The Microsoft Platform SDK does not provide std::numeric_limits<> // specializations for 64 bit integers so we need to explicitly provide // ACE_Numeric_Limits<> specializations to compensate for this |