Commit 112a619e authored by Oli Wilkinson's avatar Oli Wilkinson

Disabled assignment operator of TableKeyComparator; was causing warning C4512 on…

Disabled assignment operator of TableKeyComparator; was causing warning C4512 on VS2010 and thus causing the build to fail.
parent 41395d98
......@@ -938,6 +938,9 @@ FLATBUFFERS_FINAL_CLASS
return table_a->KeyCompareLessThan(table_b);
}
vector_downward& buf_;
private:
TableKeyComparator& operator= (const TableKeyComparator&);
};
/// @endcond
......
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