diff options
author | Andrew Plumb <andrew@plumb.org> | 2012-02-13 16:23:18 (GMT) |
---|---|---|
committer | Andrew Plumb <andrew@plumb.org> | 2012-02-13 16:23:18 (GMT) |
commit | d4efb54284f0781aee40cb660712fa15256676df (patch) | |
tree | 11f0f6ab56cd78fa604f206aba19c18748d6236d /src/PolySetCGALEvaluator.cc | |
parent | b633845e55c1733ecd9fa4a01606fd7bdafacc48 (diff) |
Cleaned up unsigned int compiler warnings
Diffstat (limited to 'src/PolySetCGALEvaluator.cc')
-rw-r--r-- | src/PolySetCGALEvaluator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PolySetCGALEvaluator.cc b/src/PolySetCGALEvaluator.cc index c1bdea4..7afb359 100644 --- a/src/PolySetCGALEvaluator.cc +++ b/src/PolySetCGALEvaluator.cc @@ -116,7 +116,7 @@ PolySet *PolySetCGALEvaluator::evaluatePolySet(const ProjectionNode &node) double z = ps3->polygons[i][j][2]; if (z != 0) goto next_ps3_polygon_cut_mode; - if (conversion_grid.align(x, y) == i+1) + if ((unsigned) conversion_grid.align(x, y) == i+1) goto next_ps3_polygon_cut_mode; conversion_grid.data(x, y) = i+1; } |