(svn r23940) -Codechange: remove superfluous semicolons

This commit is contained in:
smatz
2012-02-12 19:46:40 +00:00
parent e5f21f9a09
commit f4de9b8a37
3 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ enum GenderEthnicity {
GE_BF = 1 << ETHNICITY_BLACK | 1 << GENDER_FEMALE, ///< A female of African origin (black)
GE_END,
};
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity); ///< See GenderRace as a bitset
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) ///< See GenderRace as a bitset
/** Bitgroups of the CompanyManagerFace variable */
enum CompanyManagerFaceVariable {
@@ -52,7 +52,7 @@ enum CompanyManagerFaceVariable {
CMFV_GLASSES,
CMFV_END,
};
DECLARE_POSTFIX_INCREMENT(CompanyManagerFaceVariable);
DECLARE_POSTFIX_INCREMENT(CompanyManagerFaceVariable)
/** Information about the valid values of CompanyManagerFace bitgroups as well as the sprites to draw */
struct CompanyManagerFaceBitsInfo {