Commit 6740be02 by Philipp Adolf

Fix signed/unsigned comparison

parent fb649f72
...@@ -303,7 +303,7 @@ Subdivision::Tables Subdivision::precomputeTables(Input input) { ...@@ -303,7 +303,7 @@ Subdivision::Tables Subdivision::precomputeTables(Input input) {
//Format: First entry: original vertex. Other entries: adjacent vertices. //Format: First entry: original vertex. Other entries: adjacent vertices.
QVector<QVector<unsigned int> > duplicates;//for debugging QVector<QVector<unsigned int> > duplicates;//for debugging
unsigned int offset = 0; unsigned int offset = 0;
for (unsigned int i = 0; i < vb.length(); i++){ for (int i = 0; i < vb.length(); i++){
//hat evtl viel redundanz //hat evtl viel redundanz
QVector<Vertex> adj_v;//helfer QVector<Vertex> adj_v;//helfer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment