clang formating cpp code generator and add missing generated classes

This commit is contained in:
lakedaemon
2016-07-15 15:35:24 +02:00
parent 0328dedab5
commit e750268f0c
15 changed files with 53 additions and 69 deletions

View File

@@ -8,8 +8,8 @@ public final class Color {
public static final byte Green = 2;
public static final byte Blue = 8;
private static final String[] names = { "Red", "Green", "", "", "", "", "", "Blue", };
public static final String[] names = { "Red", "Green", "", "", "", "", "", "Blue", };
public static String name(int e) { return names[e - Red]; }
};
}