Missing generated code files.

Change-Id: I8808b0b419981ba7d0699da4a1effb0b660a21cb
This commit is contained in:
Wouter van Oortmerssen
2017-11-20 09:19:35 -08:00
parent 0cf04ad9d5
commit be1ad33910
4 changed files with 0 additions and 12 deletions

View File

@@ -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.

View File

@@ -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)) {

View File

@@ -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)) {
}