summaryrefslogtreecommitdiff
path: root/src/company_manager_face.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
committerrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
commitdf16ebd7301a989c813c26ab2e21163d361ee236 (patch)
treec74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/company_manager_face.h
parenteaadd215be7a4594bd37504935a821f8cf68c984 (diff)
downloadopenttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/company_manager_face.h')
-rw-r--r--src/company_manager_face.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/company_manager_face.h b/src/company_manager_face.h
index 43aabeecc..88c0d18aa 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 {
@@ -50,9 +50,9 @@ enum CompanyManagerFaceVariable {
CMFV_COLLAR,
CMFV_TIE_EARRING,
CMFV_GLASSES,
- CMFV_END
+ 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 {