Duh, silly me. Fixing bogus attempt at casting...

This commit is contained in:
jst%mozilla.jstenback.com 2004-02-21 01:02:26 +00:00
parent e456d4fb7a
commit ea534cf241

View File

@ -697,7 +697,7 @@ class nsTAdoptingString_CharT : public nsTXPIDLString_CharT
public:
explicit nsTAdoptingString_CharT(char_type* str, size_type length = (-1))
explicit nsTAdoptingString_CharT(char_type* str, size_type length = size_type(-1))
{
Adopt(str, length);
}