Remove some extra trailing semicolons (no bug)

This commit is contained in:
Ehsan Akhgari 2012-07-10 12:41:44 -04:00
Родитель eb4cda4663
Коммит e7ace18312
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -357,7 +357,7 @@ struct AllCompartments : public CompartmentFilter {
struct ContentCompartmentsOnly : public CompartmentFilter {
virtual bool match(JSCompartment *c) const {
return !IsSystemCompartment(c);
};
}
};
struct SingleCompartment : public CompartmentFilter {
@ -371,7 +371,7 @@ struct CompartmentsWithPrincipals : public CompartmentFilter {
CompartmentsWithPrincipals(JSPrincipals *p) : principals(p) {}
virtual bool match(JSCompartment *c) const {
return JS_GetCompartmentPrincipals(c) == principals;
};
}
};
JS_FRIEND_API(bool)