Explicitly declare inlined function as inline & remove COM declaration.

Fixing native mingw build bustage.
Bug #240106 r=darin


git-svn-id: svn://10.0.0.236/trunk@155177 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2004-04-19 21:37:39 +00:00
parent d89ba0e492
commit 6fdf10372f

View File

@@ -442,7 +442,7 @@ class nsTString_CharT : public nsTSubstring_CharT
/**
* Append the given unsigned integer to this string
*/
NS_COM void AppendInt( PRUint32 aInteger, PRInt32 aRadix = kRadix10 )
inline void AppendInt( PRUint32 aInteger, PRInt32 aRadix = kRadix10 )
{
AppendInt(PRInt32(aInteger), aRadix);
}