(svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};

This commit is contained in:
rubidium
2007-03-07 12:11:48 +00:00
parent 4169bfba06
commit 979ccd45ba
138 changed files with 779 additions and 789 deletions

View File

@@ -286,10 +286,10 @@ static const byte livery_height[] = {
3,
};
typedef struct livery_d {
struct livery_d {
uint32 sel;
LiveryClass livery_class;
} livery_d;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(livery_d));
static void ShowColourDropDownMenu(Window *w, uint32 widget)