summaryrefslogtreecommitdiff
path: root/src/company_manager_face.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2010-03-23 22:25:43 +0000
committersmatz <smatz@openttd.org>2010-03-23 22:25:43 +0000
commit53aaabe6e9aebdca71608e2996a9ecbff8b73713 (patch)
tree5e4cc5631e59a15aed9f63c3daa81b6d5927b91a /src/company_manager_face.h
parentf45e579923773e05dfc5a35915eee81f6da50914 (diff)
downloadopenttd-53aaabe6e9aebdca71608e2996a9ecbff8b73713.tar.xz
(svn r19507) -Codechange: remove semicolon after DECLARE_POSTFIX_INCREMENT and DECLARE_ENUM_AS_BIT_SET
Diffstat (limited to 'src/company_manager_face.h')
-rw-r--r--src/company_manager_face.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/company_manager_face.h b/src/company_manager_face.h
index 46a1ac9e8..5e68aa27c 100644
--- a/src/company_manager_face.h
+++ b/src/company_manager_face.h
@@ -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 {