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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-03-20 02:21:40 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-03-20 02:21:40 +0400
commitccbed1334382a881671a03e281ebd88d51767697 (patch)
tree86146b803d81009cd381180027b6671eac8bd54b /intern
parente6834fcf851e6a23c420b203468a78e460ea1e85 (diff)
Quiet warnings about unused functions and variables.
Commented or '#if 0' these functions/variables and marked with 'UNUSED' comment so they can be restored in the future if needed.
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();