Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
Diffstat (limited to 'intern')
-rw-r--r--intern/decimation/intern/LOD_QSDecimator.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/decimation/intern/LOD_QSDecimator.cpp b/intern/decimation/intern/LOD_QSDecimator.cpp
index 381571a41f6..bdcf7950447 100644
--- a/intern/decimation/intern/LOD_QSDecimator.cpp
+++ b/intern/decimation/intern/LOD_QSDecimator.cpp
@@ -265,8 +265,10 @@ BuildHeap(
// load in edge pointers to the heap
std::vector<LOD_Edge> & edge_set= m_mesh.EdgeSet();
- std::vector<LOD_Edge>::const_iterator edge_end = edge_set.end();
- std::vector<LOD_Edge>::iterator edge_start = edge_set.begin();
+
+ // UNUSED
+ // std::vector<LOD_Edge>::const_iterator edge_end = edge_set.end();
+ // std::vector<LOD_Edge>::iterator edge_start = edge_set.begin();
std::vector<int> & heap_vector = m_heap->HeapVector();