Missing generated code files.

Change-Id: I8808b0b419981ba7d0699da4a1effb0b660a21cb
parent 0cf04ad9
...@@ -140,9 +140,6 @@ MANUALLY_ALIGNED_STRUCT(4) Vec3 FLATBUFFERS_FINAL_CLASS { ...@@ -140,9 +140,6 @@ MANUALLY_ALIGNED_STRUCT(4) Vec3 FLATBUFFERS_FINAL_CLASS {
Vec3() { Vec3() {
memset(this, 0, sizeof(Vec3)); memset(this, 0, sizeof(Vec3));
} }
Vec3(const Vec3 &_o) {
memcpy(this, &_o, sizeof(Vec3));
}
Vec3(float _x, float _y, float _z) Vec3(float _x, float _y, float _z)
: x_(flatbuffers::EndianScalar(_x)), : x_(flatbuffers::EndianScalar(_x)),
y_(flatbuffers::EndianScalar(_y)), y_(flatbuffers::EndianScalar(_y)),
......
No preview for this file type
...@@ -54,9 +54,6 @@ MANUALLY_ALIGNED_STRUCT(4) StructInNestedNS FLATBUFFERS_FINAL_CLASS { ...@@ -54,9 +54,6 @@ MANUALLY_ALIGNED_STRUCT(4) StructInNestedNS FLATBUFFERS_FINAL_CLASS {
StructInNestedNS() { StructInNestedNS() {
memset(this, 0, sizeof(StructInNestedNS)); memset(this, 0, sizeof(StructInNestedNS));
} }
StructInNestedNS(const StructInNestedNS &_o) {
memcpy(this, &_o, sizeof(StructInNestedNS));
}
StructInNestedNS(int32_t _a, int32_t _b) StructInNestedNS(int32_t _a, int32_t _b)
: a_(flatbuffers::EndianScalar(_a)), : a_(flatbuffers::EndianScalar(_a)),
b_(flatbuffers::EndianScalar(_b)) { b_(flatbuffers::EndianScalar(_b)) {
......
...@@ -141,9 +141,6 @@ MANUALLY_ALIGNED_STRUCT(4) Rapunzel FLATBUFFERS_FINAL_CLASS { ...@@ -141,9 +141,6 @@ MANUALLY_ALIGNED_STRUCT(4) Rapunzel FLATBUFFERS_FINAL_CLASS {
Rapunzel() { Rapunzel() {
memset(this, 0, sizeof(Rapunzel)); memset(this, 0, sizeof(Rapunzel));
} }
Rapunzel(const Rapunzel &_o) {
memcpy(this, &_o, sizeof(Rapunzel));
}
Rapunzel(int32_t _hair_length) Rapunzel(int32_t _hair_length)
: hair_length_(flatbuffers::EndianScalar(_hair_length)) { : hair_length_(flatbuffers::EndianScalar(_hair_length)) {
} }
...@@ -164,9 +161,6 @@ MANUALLY_ALIGNED_STRUCT(4) BookReader FLATBUFFERS_FINAL_CLASS { ...@@ -164,9 +161,6 @@ MANUALLY_ALIGNED_STRUCT(4) BookReader FLATBUFFERS_FINAL_CLASS {
BookReader() { BookReader() {
memset(this, 0, sizeof(BookReader)); memset(this, 0, sizeof(BookReader));
} }
BookReader(const BookReader &_o) {
memcpy(this, &_o, sizeof(BookReader));
}
BookReader(int32_t _books_read) BookReader(int32_t _books_read)
: books_read_(flatbuffers::EndianScalar(_books_read)) { : books_read_(flatbuffers::EndianScalar(_books_read)) {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment