Fixing platform bustage only caught by SunOS Workshop. Need a |const| in a cast to avoid casting away |const|-ness. r=jdunn

This commit is contained in:
scc%mozilla.org 2000-05-20 18:22:05 +00:00
parent 4814477a24
commit 82bbf19a82
3 changed files with 6 additions and 6 deletions

View File

@ -307,7 +307,7 @@ struct nsCharTraits<char>
const char*
find( const char* s, size_t n, char c )
{
return NS_STATIC_CAST(char*, memchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const char*, memchr(s, to_int_type(c), n));
}
#if 0
@ -433,7 +433,7 @@ struct nsCharTraits<wchar_t>
const wchar_t*
find( const wchar_t* s, size_t n, wchar_t c )
{
return NS_STATIC_CAST(wchar_t*, wmemchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const wchar_t*, wmemchr(s, to_int_type(c), n));
}
#if 0

View File

@ -307,7 +307,7 @@ struct nsCharTraits<char>
const char*
find( const char* s, size_t n, char c )
{
return NS_STATIC_CAST(char*, memchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const char*, memchr(s, to_int_type(c), n));
}
#if 0
@ -433,7 +433,7 @@ struct nsCharTraits<wchar_t>
const wchar_t*
find( const wchar_t* s, size_t n, wchar_t c )
{
return NS_STATIC_CAST(wchar_t*, wmemchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const wchar_t*, wmemchr(s, to_int_type(c), n));
}
#if 0

View File

@ -307,7 +307,7 @@ struct nsCharTraits<char>
const char*
find( const char* s, size_t n, char c )
{
return NS_STATIC_CAST(char*, memchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const char*, memchr(s, to_int_type(c), n));
}
#if 0
@ -433,7 +433,7 @@ struct nsCharTraits<wchar_t>
const wchar_t*
find( const wchar_t* s, size_t n, wchar_t c )
{
return NS_STATIC_CAST(wchar_t*, wmemchr(s, to_int_type(c), n));
return NS_STATIC_CAST(const wchar_t*, wmemchr(s, to_int_type(c), n));
}
#if 0