diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 19:23:57 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-07 19:23:57 +0000 |
commit | 6afc5001f304ae5407dd115e28a5081d71bc14ec (patch) | |
tree | 1b20c2a7582b3cbfcbcdc469a2008a45f2138bb2 | |
parent | deba68e5eb03701b21d876b014fb4a3ffe71c44d (diff) | |
download | ATCD-6afc5001f304ae5407dd115e28a5081d71bc14ec.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog-99b | 19 | ||||
-rw-r--r-- | ace/Basic_Types.h | 2 |
2 files changed, 12 insertions, 9 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index e562693264c..caf23035c29 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,14 @@ +Wed Apr 7 14:20:59 1999 Jeff Parsons <parsons@cs.wustl.edu> + + * ace/Basic_Types.h: + Added a signed companion to David's + ACE_UINT64_LITERAL, to avoid MSVC warnings. If + the platform has no 8-byte integer, this is + useless, but we must keep all compilers happy. + Also modified ACE_INT64_MAX tp use this, and + added a signed companion to + ACE_UINT64_FORMAT_SPECIFIER. + Wed Apr 07 13:57:33 1999 David L. Levine <levine@cs.wustl.edu> * ACE-INSTALL.html: updated egcs shared library discussion @@ -12,14 +23,6 @@ Wed Apr 07 13:14:34 1999 Nanbor Wang <nanbor@cs.wustl.edu> * ace/Service_Repository.cpp (find_i): Disallowed returning a service which fini() has been called upon. -Wed Apr 7 13:36:44 1999 Jeff Parsons <parsons@cs.wustl.edu> - - * ace/Basic_Types.h: - Added a signed companion to David's - ACE_UINT64_LITERAL, to avoid MSVC warnings. If - the platform has no 8-byte integer, this is - useless, but we must keep all compilers happy. - Wed Apr 7 11:30:09 1999 Carlos O'Ryan <coryan@cs.wustl.edu> * bin/auto_compile: diff --git a/ace/Basic_Types.h b/ace/Basic_Types.h index c10c9994249..8b8f517840f 100644 --- a/ace/Basic_Types.h +++ b/ace/Basic_Types.h @@ -370,7 +370,7 @@ typedef ACE_UINT16 ACE_USHORT16; #endif /* ACE_UINT64_FORMAT_SPECIFIER */ #if !defined (ACE_INT64_FORMAT_SPECIFIER) -# define ACE_INT64_FORMAT_SPECIFIER "%ll" +# define ACE_INT64_FORMAT_SPECIFIER "%lld" #endif /* ACE_INT64_FORMAT_SPECIFIER */ // Cast from UINT64 to a double requires an intermediate cast to INT64 |