Disabled assignment operator of TableKeyComparator; was causing warning C4512 on VS2010 and thus causing the build to fail.

This commit is contained in:
Oli Wilkinson
2016-01-20 18:44:44 +00:00
parent 41395d981d
commit 112a619ec1

View File

@@ -938,6 +938,9 @@ FLATBUFFERS_FINAL_CLASS
return table_a->KeyCompareLessThan(table_b);
}
vector_downward& buf_;
private:
TableKeyComparator& operator= (const TableKeyComparator&);
};
/// @endcond