diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-16 23:13:23 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-16 23:13:23 +0000 |
commit | 123a36d5f53b12cc4d4243a3af25aac93cf9f9af (patch) | |
tree | 6cfe4497befe6af858f5837d17ad1b6f19071b51 | |
parent | 917c1162363149b612ec80b8d5efe16bb09d86c5 (diff) | |
download | ATCD-123a36d5f53b12cc4d4243a3af25aac93cf9f9af.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog-97a | 3 | ||||
-rw-r--r-- | ace/Log_Priority.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a index 8d25ac4b6b1..29b303d2e9a 100644 --- a/ChangeLog-97a +++ b/ChangeLog-97a @@ -1,5 +1,8 @@ Fri May 16 12:25:32 1997 Douglas C. Schmidt <schmidt@flamenco.cs.wustl.edu> + * netsvcs/lib: Reverted back to the original Server_Logging_Handler + behavior since the new version is breaking GCC's templates. + * ace/Log_Record.h: need to #include "ace/ACE.h" before "ace/Log_Priority.h" so that "Log_Priority.h" sees the configuration stuff (otherwise the following fix won't work). diff --git a/ace/Log_Priority.h b/ace/Log_Priority.h index 9cce4eee856..8294e7844ba 100644 --- a/ace/Log_Priority.h +++ b/ace/Log_Priority.h @@ -70,7 +70,9 @@ enum ACE_Log_Priority // Do not use!!, this enum value ensures that the underlying // integral type for this enum is at least 32 bits. +#if !defined (ACE_HAS_BROKEN_ENUMS) ENSURE_32_BITS = 0xFFFFFFFF +#endif /* ACE_HAS_BROKEN_ENUMS */ }; #endif /* ACE_LOG_PRIORITY_H */ |