зеркало из https://github.com/mozilla/pjs.git
Fix build on gcc 3.4 by removing extra semicolons (bug 218551). r/sr=dbaron, a=brendan.
This commit is contained in:
Родитель
1be4101b00
Коммит
5505f599a9
|
@ -74,6 +74,6 @@ void TX_ToLowerCase(const nsAString& aSource, nsAString& aDest);
|
|||
inline PRBool TX_StringEqualsAtom(const nsAString& aString, nsIAtom* aAtom)
|
||||
{
|
||||
return aAtom->Equals(aString);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // txStringUtils_h__
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
/**
|
||||
* Create a new AttributeValueTemplate
|
||||
**/
|
||||
AttributeValueTemplate::AttributeValueTemplate() {};
|
||||
AttributeValueTemplate::AttributeValueTemplate() {}
|
||||
|
||||
/**
|
||||
* Default destructor
|
||||
|
|
|
@ -83,7 +83,7 @@ struct txKeyValueHashEntry : public PLDHashEntryHdr
|
|||
nsRefPtr<NodeSet> mNodeSet;
|
||||
};
|
||||
|
||||
DECL_DHASH_WRAPPER(txKeyValueHash, txKeyValueHashEntry, txKeyValueHashKey&);
|
||||
DECL_DHASH_WRAPPER(txKeyValueHash, txKeyValueHashEntry, txKeyValueHashKey&)
|
||||
|
||||
class txIndexedKeyHashKey
|
||||
{
|
||||
|
@ -117,7 +117,7 @@ struct txIndexedKeyHashEntry : public PLDHashEntryHdr
|
|||
};
|
||||
|
||||
DECL_DHASH_WRAPPER(txIndexedKeyHash, txIndexedKeyHashEntry,
|
||||
txIndexedKeyHashKey&);
|
||||
txIndexedKeyHashKey&)
|
||||
|
||||
/**
|
||||
* Class holding all <xsl:key>s of a particular expanded name in the
|
||||
|
|
|
@ -124,8 +124,8 @@ nsresult txKeyFunctionCall::getNameAtom(nsIAtom** aAtom)
|
|||
* Hash functions
|
||||
*/
|
||||
|
||||
DHASH_WRAPPER(txKeyValueHash, txKeyValueHashEntry, txKeyValueHashKey&);
|
||||
DHASH_WRAPPER(txIndexedKeyHash, txIndexedKeyHashEntry, txIndexedKeyHashKey&);
|
||||
DHASH_WRAPPER(txKeyValueHash, txKeyValueHashEntry, txKeyValueHashKey&)
|
||||
DHASH_WRAPPER(txIndexedKeyHash, txIndexedKeyHashEntry, txIndexedKeyHashKey&)
|
||||
|
||||
const void*
|
||||
txKeyValueHashEntry::GetKey()
|
||||
|
|
|
@ -807,7 +807,7 @@ txTransformNotifier::~txTransformNotifier()
|
|||
|
||||
NS_IMPL_ISUPPORTS2(txTransformNotifier,
|
||||
nsIScriptLoaderObserver,
|
||||
nsICSSLoaderObserver);
|
||||
nsICSSLoaderObserver)
|
||||
|
||||
NS_IMETHODIMP
|
||||
txTransformNotifier::ScriptAvailable(nsresult aResult,
|
||||
|
|
Загрузка…
Ссылка в новой задаче