Commit 4ed52c558862f2f598e599179b25abd0447f9313

sammy 2008-05-06T10:00:48

* Fix an unsigned int / size_t mismatch in FTVectoriser.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/FTVectoriser.cpp b/src/FTVectoriser.cpp
index ed5cf3d..467a75e 100644
--- a/src/FTVectoriser.cpp
+++ b/src/FTVectoriser.cpp
@@ -117,7 +117,7 @@ void FTMesh::End()
 }
 
 
-const FTTesselation* const FTMesh::Tesselation(unsigned int index) const
+const FTTesselation* const FTMesh::Tesselation(size_t index) const
 {
     return (index < tesselationList.size()) ? tesselationList[index] : NULL;
 }