change VertexRef elements to unsigned values to fix compile warnings

This commit is contained in:
Josh Holtrop 2011-05-16 15:01:36 -04:00
parent c5c76f0033
commit 01a90fdef7

View File

@ -92,9 +92,9 @@ protected:
{ {
public: public:
VertexRef() : vertex(0), texture(0), normal(0) {} VertexRef() : vertex(0), texture(0), normal(0) {}
int vertex; size_t vertex;
int texture; size_t texture;
int normal; size_t normal;
bool operator<(const VertexRef & other) const; bool operator<(const VertexRef & other) const;
}; };