add typename to make linux compiler happy r=scc

This commit is contained in:
pavlov%netscape.com 2000-04-23 05:54:36 +00:00
Родитель 3b1bee689a
Коммит 64baf8c0ac
3 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -480,7 +480,7 @@ struct nsCharSourceTraits
}
static
const InputIterator::value_type*
const typename InputIterator::value_type*
read( const InputIterator& iter )
{
return iter.operator->();
@ -520,7 +520,7 @@ struct nsCharSinkTraits
{
static
PRUint32
write( OutputIterator& iter, const OutputIterator::value_type* s, PRUint32 n )
write( OutputIterator& iter, const typename OutputIterator::value_type* s, PRUint32 n )
{
return iter.write(s, n);
}

Просмотреть файл

@ -480,7 +480,7 @@ struct nsCharSourceTraits
}
static
const InputIterator::value_type*
const typename InputIterator::value_type*
read( const InputIterator& iter )
{
return iter.operator->();
@ -520,7 +520,7 @@ struct nsCharSinkTraits
{
static
PRUint32
write( OutputIterator& iter, const OutputIterator::value_type* s, PRUint32 n )
write( OutputIterator& iter, const typename OutputIterator::value_type* s, PRUint32 n )
{
return iter.write(s, n);
}

Просмотреть файл

@ -480,7 +480,7 @@ struct nsCharSourceTraits
}
static
const InputIterator::value_type*
const typename InputIterator::value_type*
read( const InputIterator& iter )
{
return iter.operator->();
@ -520,7 +520,7 @@ struct nsCharSinkTraits
{
static
PRUint32
write( OutputIterator& iter, const OutputIterator::value_type* s, PRUint32 n )
write( OutputIterator& iter, const typename OutputIterator::value_type* s, PRUint32 n )
{
return iter.write(s, n);
}