mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-21 20:08:28 +00:00
clang formating cpp code generator and add missing generated classes
This commit is contained in:
@@ -8,8 +8,8 @@ public final class EnumInNestedNS {
|
||||
public static final byte B = 1;
|
||||
public static final byte C = 2;
|
||||
|
||||
private static final String[] names = { "A", "B", "C", };
|
||||
public static final String[] names = { "A", "B", "C", };
|
||||
|
||||
public static String name(int e) { return names[e]; }
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -22,5 +22,5 @@ public final class StructInNestedNS extends Struct {
|
||||
builder.putInt(a);
|
||||
return builder.offset();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -29,5 +29,5 @@ public final class TableInNestedNS extends Table {
|
||||
int o = builder.endObject();
|
||||
return o;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user