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:
VertexRef() : vertex(0), texture(0), normal(0) {}
int vertex;
int texture;
int normal;
size_t vertex;
size_t texture;
size_t normal;
bool operator<(const VertexRef & other) const;
};