fix win32 build issue as discovered by jean-claude and teedee

This commit is contained in:
David Rose 2013-03-11 00:09:48 +00:00
parent 400f22693a
commit 5ea50b5073

View File

@ -72,9 +72,9 @@ protected:
// Read from the obj file. // Read from the obj file.
int _line_number; int _line_number;
typedef pvector<LVecBase4> Vec4Table; typedef epvector<LVecBase4> Vec4Table;
typedef pvector<LVecBase3> Vec3Table; typedef epvector<LVecBase3> Vec3Table;
typedef pvector<LVecBase2> Vec2Table; typedef epvector<LVecBase2> Vec2Table;
typedef pmap<LVecBase3, int> UniqueVec3Table; typedef pmap<LVecBase3, int> UniqueVec3Table;
Vec4Table _v_table; Vec4Table _v_table;