]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexformat.cpp
Get rid of the typedefs for fundamental types
[libs/gl.git] / source / vertexformat.cpp
index 457cffad2724548cc31577fc0267e2c368ec421b..c26c5c3e11f83fdca0bc87cacbbc5bd49b7e2cfe 100644 (file)
@@ -57,7 +57,7 @@ VertexFormat::~VertexFormat()
 
 unsigned VertexFormat::stride() const
 {
-       uint s=0;
+       unsigned s=0;
        for(const unsigned char *i=begin(); i!=end(); ++i)
                s+=(*i&3)+1;
        return s;