Skip to content

Commit

Permalink
(svn r23940) -Codechange: remove superfluous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
smatz committed Feb 12, 2012
1 parent e5f21f9 commit f4de9b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/company_manager_face.h
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/settingsgen/settingsgen.cpp
Expand Up @@ -44,7 +44,7 @@ void NORETURN CDECL error(const char *s, ...)
va_end(va);
fprintf(stderr, "FATAL: %s\n", buf);
exit(1);
};
}

static const int OUTPUT_BLOCK_SIZE = 16000; ///< Block size of the buffer in #OutputBuffer.

Expand Down
2 changes: 1 addition & 1 deletion src/string_type.h
Expand Up @@ -51,6 +51,6 @@ enum StringValidationSettings {
SVS_ALLOW_NEWLINE = 1 << 1, ///< Allow newlines.
SVS_ALLOW_CONTROL_CODE = 1 << 2, ///< Allow the special control codes.
};
DECLARE_ENUM_AS_BIT_SET(StringValidationSettings);
DECLARE_ENUM_AS_BIT_SET(StringValidationSettings)

#endif /* STRING_TYPE_H */

0 comments on commit f4de9b8

Please sign in to comment.