mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
Missing generated code files.
Change-Id: I8808b0b419981ba7d0699da4a1effb0b660a21cb
This commit is contained in:
@@ -140,9 +140,6 @@ MANUALLY_ALIGNED_STRUCT(4) Vec3 FLATBUFFERS_FINAL_CLASS {
|
||||
Vec3() {
|
||||
memset(this, 0, sizeof(Vec3));
|
||||
}
|
||||
Vec3(const Vec3 &_o) {
|
||||
memcpy(this, &_o, sizeof(Vec3));
|
||||
}
|
||||
Vec3(float _x, float _y, float _z)
|
||||
: x_(flatbuffers::EndianScalar(_x)),
|
||||
y_(flatbuffers::EndianScalar(_y)),
|
||||
|
||||
Binary file not shown.
@@ -54,9 +54,6 @@ MANUALLY_ALIGNED_STRUCT(4) StructInNestedNS FLATBUFFERS_FINAL_CLASS {
|
||||
StructInNestedNS() {
|
||||
memset(this, 0, sizeof(StructInNestedNS));
|
||||
}
|
||||
StructInNestedNS(const StructInNestedNS &_o) {
|
||||
memcpy(this, &_o, sizeof(StructInNestedNS));
|
||||
}
|
||||
StructInNestedNS(int32_t _a, int32_t _b)
|
||||
: a_(flatbuffers::EndianScalar(_a)),
|
||||
b_(flatbuffers::EndianScalar(_b)) {
|
||||
|
||||
@@ -141,9 +141,6 @@ MANUALLY_ALIGNED_STRUCT(4) Rapunzel FLATBUFFERS_FINAL_CLASS {
|
||||
Rapunzel() {
|
||||
memset(this, 0, sizeof(Rapunzel));
|
||||
}
|
||||
Rapunzel(const Rapunzel &_o) {
|
||||
memcpy(this, &_o, sizeof(Rapunzel));
|
||||
}
|
||||
Rapunzel(int32_t _hair_length)
|
||||
: hair_length_(flatbuffers::EndianScalar(_hair_length)) {
|
||||
}
|
||||
@@ -164,9 +161,6 @@ MANUALLY_ALIGNED_STRUCT(4) BookReader FLATBUFFERS_FINAL_CLASS {
|
||||
BookReader() {
|
||||
memset(this, 0, sizeof(BookReader));
|
||||
}
|
||||
BookReader(const BookReader &_o) {
|
||||
memcpy(this, &_o, sizeof(BookReader));
|
||||
}
|
||||
BookReader(int32_t _books_read)
|
||||
: books_read_(flatbuffers::EndianScalar(_books_read)) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user