(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style

This commit is contained in:
rubidium
2011-12-19 17:48:04 +00:00
parent eaadd215be
commit df16ebd730
42 changed files with 74 additions and 74 deletions

View File

@@ -68,7 +68,7 @@ enum DirDiff {
DIRDIFF_90RIGHT = 2, ///< Angle of 90 degrees right
DIRDIFF_REVERSE = 4, ///< One direction is the opposit of the other one
DIRDIFF_90LEFT = 6, ///< Angle of 90 degrees left
DIRDIFF_45LEFT = 7 ///< Angle of 45 degrees left
DIRDIFF_45LEFT = 7, ///< Angle of 45 degrees left
};
@@ -109,7 +109,7 @@ enum DiagDirDiff {
DIAGDIRDIFF_SAME = 0, ///< Same directions
DIAGDIRDIFF_90RIGHT = 1, ///< 90 degrees right
DIAGDIRDIFF_REVERSE = 2, ///< Reverse directions
DIAGDIRDIFF_90LEFT = 3 ///< 90 degrees left
DIAGDIRDIFF_90LEFT = 3, ///< 90 degrees left
};
/** Allow incrementing of DiagDirDiff variables */