removing bogus const type qualifier to fix IRIX compiler warning (thanks to dbaron for noticing this)

This commit is contained in:
darin%meer.net 2004-02-20 23:28:49 +00:00
parent add5e48c18
commit adf6f03670

View File

@ -122,7 +122,7 @@ class nsTString_CharT : public nsTSubstring_CharT
* the null terminator character.
*/
const char_type CharAt( index_type i ) const
char_type CharAt( index_type i ) const
{
NS_ASSERTION(i <= mLength, "index exceeds allowable range");
return mData[i];