From 7adec445a87c9b0079ede20a4f6394cd5f1ae0cf Mon Sep 17 00:00:00 2001 From: schmidt Date: Sun, 10 Nov 2002 21:55:19 +0000 Subject: ChangeLogTag:Sat Nov 9 12:37:54 2002 Douglas C. Schmidt --- ChangeLog | 6 ++++++ ChangeLogs/ChangeLog-03a | 6 ++++++ THANKS | 3 ++- ace/OS_String.cpp | 14 +++++++------- docs/ACE-guidelines.html | 13 +++++-------- 5 files changed, 26 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4b864c41aa9..e2fc011e873 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Nov 9 12:37:54 2002 Douglas C. Schmidt + + * docs/ACE-guidelines.html: Updated the ACE guidelines to + refer to the correct Doxygen links. Thanks to + Johnny Willemsen for reporting this. + Sat Nov 9 21:48:31 2002 Steve Huston * tests/Proactor_Test.cpp: When disabling Nagle's, use IPPROTO_TCP, diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 4b864c41aa9..e2fc011e873 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Sat Nov 9 12:37:54 2002 Douglas C. Schmidt + + * docs/ACE-guidelines.html: Updated the ACE guidelines to + refer to the correct Doxygen links. Thanks to + Johnny Willemsen for reporting this. + Sat Nov 9 21:48:31 2002 Steve Huston * tests/Proactor_Test.cpp: When disabling Nagle's, use IPPROTO_TCP, diff --git a/THANKS b/THANKS index e9f40d2749e..eab845071d7 100644 --- a/THANKS +++ b/THANKS @@ -1542,7 +1542,7 @@ Davide Pasetto Michael Hornok W.M. van den Boogaard Carol Hunsicker -Joseph Sarbak +Joseph Sarbak Ruslan Zasukhin Colin Weaver Kew Whitney @@ -1605,6 +1605,7 @@ Thomas Devanneaux Paul Marquis Ed Skees Marc Alter +Martin Geliot Simon McQueen I would particularly like to thank Paul Stephenson, who worked with me diff --git a/ace/OS_String.cpp b/ace/OS_String.cpp index b36ace33f1d..e0a4f4a1286 100644 --- a/ace/OS_String.cpp +++ b/ace/OS_String.cpp @@ -507,13 +507,13 @@ ACE_OS_String::itoa_emulation (int value, char *string, int radix) // Now reverse the string to get the correct result while (e > b) - { - char temp = *e; - *e = *b; - *b = temp; - ++b; - --e; - } + { + char temp = *e; + *e = *b; + *b = temp; + ++b; + --e; + } return string; } diff --git a/docs/ACE-guidelines.html b/docs/ACE-guidelines.html index cbc173acd7e..a25ca2ef9a8 100644 --- a/docs/ACE-guidelines.html +++ b/docs/ACE-guidelines.html @@ -142,16 +142,13 @@ bgcolor="#ffffff">

  • Be sure to follow the guidelines and restrictions for use of the - ACE documentation tools, notably - for header files.

    - -

  • One example of such guidelines is that comments, especially in - header files, must follow the - Doxygen + documentation tools for ACE + header files, which must follow the + Doxygen format requirements. The complete documentation for Doxygen is available in the - Doxygen - manual.
    + Doxygen + manual. For an example header file using Doxygen-style comments, please refer to ACE.h.

    -- cgit v1.2.1