Fix build on gcc 3.4 by removing extra semicolons (bug 218551). r/sr=dbaron, a=brendan.

git-svn-id: svn://10.0.0.236/trunk@146618 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%brianryner.com
2003-09-07 22:24:21 +00:00
parent eca6dfe0e4
commit 23af8f3c42
64 changed files with 167 additions and 167 deletions

View File

@@ -150,9 +150,9 @@ RobotSink::~RobotSink()
}
}
NS_IMPL_ADDREF(RobotSink);
NS_IMPL_ADDREF(RobotSink)
NS_IMPL_RELEASE(RobotSink);
NS_IMPL_RELEASE(RobotSink)
NS_IMETHODIMP RobotSink::QueryInterface(REFNSIID aIID, void** aInstancePtr)
{

View File

@@ -1330,7 +1330,7 @@ void InitializeElementTable(void) {
/*special props, prop-range*/ kNone, kBodyPropRange,
/*special parents,kids,skip*/ &gInNoframes,&gBodyKids,eHTMLTag_unknown);
}//if
};
}
void DeleteElementTable(void) {
if(gHTMLElements) {

View File

@@ -306,7 +306,7 @@ IsLoadableDTD(const nsCatalogData* aCatalogData, nsCOMPtr<nsIURI>* aDTD)
NS_IMPL_ISUPPORTS2(nsExpatDriver,
nsITokenizer,
nsIDTD);
nsIDTD)
nsresult
NS_NewExpatDriver(nsIDTD** aResult) {