[10874] Update ACE to v5.8.3

(based on zergtmn's repo commit 3a8c259)
(based on zergtmn's repo commit 946c1a8)

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
zerg 2010-12-14 17:14:34 +03:00 committed by VladimirMangos
parent c38c876b1d
commit b8d773091a
343 changed files with 3060 additions and 7431 deletions

View file

@ -1,4 +1,4 @@
// $Id: Svc_Conf_Lexer.cpp 81312 2008-04-09 21:01:34Z iliyan $
// $Id: Svc_Conf_Lexer.cpp 92178 2010-10-08 07:44:20Z olli $
#include "ace/Svc_Conf_Lexer.h"
#if (ACE_USES_CLASSIC_SVC_CONF == 1)
@ -239,9 +239,7 @@ ACE_Svc_Conf_Lexer::input (ACE_Svc_Conf_Param* param,
if (errno == EINTR)
{
errno = 0;
#if !defined (ACE_LACKS_CLEARERR)
ACE_OS::clearerr (param->source.file);
#endif /* !ACE_LACKS_CLEARERR */
}
else
{
@ -395,7 +393,7 @@ ACE_Svc_Conf_Lexer::scan (YYSTYPE* ace_yylval,
if (current == buffer->index_ + 1)
{
int lower = ACE_OS::ace_tolower (
int const lower = ACE_OS::ace_tolower (
buffer->input_[current - 1]);
if (c == ':' &&
(buffer->input_[current - 1] == '%' ||