Removed extra '::' before numeric constants.

This commit is contained in:
Vincent Richard 2005-02-05 09:30:57 +00:00
parent 2d02c629a9
commit 81b11364ed
2 changed files with 8 additions and 3 deletions

View File

@ -2,6 +2,11 @@
VERSION 0.6.4cvs VERSION 0.6.4cvs
================ ================
2005-02-05 Vincent Richard <vincent@vincent-richard.net>
* platforms/posix/posixHandler.cpp: removed extra '::' before
numeric constants.
2005-02-05 Vincent Richard <vincent@vincent-richard.net> 2005-02-05 Vincent Richard <vincent@vincent-richard.net>
* utility/md5.cpp: fixed forward use of swapUint32Array() with * utility/md5.cpp: fixed forward use of swapUint32Array() with

View File

@ -104,9 +104,9 @@ const vmime::datetime posixHandler::getCurrentLocalTime() const
const vmime::charset posixHandler::getLocaleCharset() const const vmime::charset posixHandler::getLocaleCharset() const
{ {
vmime::string prevLocale(::setlocale(::LC_ALL, "")); vmime::string prevLocale(::setlocale(LC_ALL, ""));
vmime::charset ch(::nl_langinfo(::CODESET)); vmime::charset ch(::nl_langinfo(CODESET));
::setlocale(::LC_ALL, prevLocale.c_str()); ::setlocale(LC_ALL, prevLocale.c_str());
return (ch); return (ch);
} }