regex: added some missing std:: prefixes, updated Be compiler status page.

[SVN r8354]
This commit is contained in:
John Maddock
2000-11-29 12:48:20 +00:00
parent 2c085b3dc4
commit 91953b9cf2
8 changed files with 28 additions and 26 deletions

View File

@ -47,9 +47,9 @@ namespace boost{
//
template <class charT>
size_t BOOST_RE_CALL re_strlen(const charT *s)
std::size_t BOOST_RE_CALL re_strlen(const charT *s)
{
size_t len = 0;
std::size_t len = 0;
while(*s)
{
++s;
@ -58,14 +58,14 @@ size_t BOOST_RE_CALL re_strlen(const charT *s)
return len;
}
inline size_t BOOST_RE_CALL re_strlen(const char *s)
inline std::size_t BOOST_RE_CALL re_strlen(const char *s)
{
return std::strlen(s);
}
#ifndef BOOST_RE_NO_WCSTRING
inline size_t BOOST_RE_CALL re_strlen(const wchar_t *s)
inline std::size_t BOOST_RE_CALL re_strlen(const wchar_t *s)
{
return std::wcslen(s);
}
@ -136,3 +136,4 @@ inline void BOOST_RE_CALL re_strfree(charT* p)