Browse Source

Fixed Clang warnings.

bkaradzic 12 years ago
parent
commit
ea38983f8d
1 changed files with 9 additions and 9 deletions
  1. 9 9
      3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp

+ 9 - 9
3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp

@@ -123,15 +123,15 @@ namespace Forsyth
         }
         }
         bool s_vertexScoresComputed = ComputeVertexScores();
         bool s_vertexScoresComputed = ComputeVertexScores();
 
 
-        inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache)
-        {
-            return s_vertexCacheScores[maxSizeVertexCache][cachePosition];
-        }
-
-        inline float FindVertexValenceScore(uint numActiveTris)
-        {
-            return s_vertexValenceScores[numActiveTris];
-        }
+//        inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache)
+//        {
+//            return s_vertexCacheScores[maxSizeVertexCache][cachePosition];
+//        }
+
+//        inline float FindVertexValenceScore(uint numActiveTris)
+//        {
+//            return s_vertexValenceScores[numActiveTris];
+//        }
 
 
         float FindVertexScore(uint numActiveFaces, uint cachePosition, uint vertexCacheSize)
         float FindVertexScore(uint numActiveFaces, uint cachePosition, uint vertexCacheSize)
         {
         {