Bug 581652 Some versions of GCC don't like nsCRT::IsAsciiSpace r=jst a=bsmedberg

This commit is contained in:
Neil Rashbrook 2010-07-27 12:45:59 +01:00
parent ee7000c1b2
commit c1ba581be6

View File

@ -58,9 +58,9 @@
* "foo,bar,baz," -> "foo" "bar" "baz"
*
* The function used for whitespace detection is a template argument.
* By default, it is nsCRT::IsAsciiSpace.
* By default, it is NS_IsAsciiWhitespace.
*/
template<PRBool IsWhitespace(PRUnichar) = nsCRT::IsAsciiSpace>
template<PRBool IsWhitespace(PRUnichar) = NS_IsAsciiWhitespace>
class nsCharSeparatedTokenizerTemplate
{
public: