From ea38983f8d25150a90ed7325302c4248d5c774aa Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Sun, 11 Aug 2013 20:29:10 -0700 Subject: [PATCH] Fixed Clang warnings. --- .../forsythtriangleorderoptimizer.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp b/3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp index e627dbb17..0dd59c63c 100644 --- a/3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp +++ b/3rdparty/forsyth-too/forsythtriangleorderoptimizer.cpp @@ -123,15 +123,15 @@ namespace Forsyth } bool s_vertexScoresComputed = ComputeVertexScores(); - inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache) - { - return s_vertexCacheScores[maxSizeVertexCache][cachePosition]; - } +// inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache) +// { +// return s_vertexCacheScores[maxSizeVertexCache][cachePosition]; +// } - inline float FindVertexValenceScore(uint numActiveTris) - { - return s_vertexValenceScores[numActiveTris]; - } +// inline float FindVertexValenceScore(uint numActiveTris) +// { +// return s_vertexValenceScores[numActiveTris]; +// } float FindVertexScore(uint numActiveFaces, uint cachePosition, uint vertexCacheSize) {