diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2014-03-01 03:28:59 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2014-03-01 03:28:59 +0000 |
| commit | df67b742113481755ffa8e43e8716b111d9e5916 (patch) | |
| tree | be4abbb95174a33274673c6e40eef1317a8e2e3c /src/libavoid/router.cpp | |
| parent | Spray tool: (diff) | |
| download | inkscape-df67b742113481755ffa8e43e8716b111d9e5916.tar.gz inkscape-df67b742113481755ffa8e43e8716b111d9e5916.zip | |
Remove unused shadowed variables.
(bzr r13078)
Diffstat (limited to 'src/libavoid/router.cpp')
| -rw-r--r-- | src/libavoid/router.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libavoid/router.cpp b/src/libavoid/router.cpp index 35f921bb4..55098b9d8 100644 --- a/src/libavoid/router.cpp +++ b/src/libavoid/router.cpp @@ -793,7 +793,6 @@ void Router::improveCrossings(void) } // Determine if this pair cross. Avoid::Polygon& jRoute = (*j)->routeRef(); - CrossingsInfoPair crossingInfo = std::make_pair(0, 0); bool meetsPenaltyCriteria = false; for (size_t jInd = 1; jInd < jRoute.size(); ++jInd) { @@ -1434,7 +1433,6 @@ bool Router::existsOrthogonalPathOverlap(void) { // Determine if this pair overlap Avoid::Polygon jRoute = (*j)->displayRoute(); - CrossingsInfoPair crossingInfo = std::make_pair(0, 0); for (size_t jInd = 1; jInd < jRoute.size(); ++jInd) { const bool finalSegment = ((jInd + 1) == jRoute.size()); @@ -1468,7 +1466,6 @@ bool Router::existsOrthogonalTouchingCorners(void) { // Determine if this pair overlap Avoid::Polygon jRoute = (*j)->displayRoute(); - CrossingsInfoPair crossingInfo = std::make_pair(0, 0); for (size_t jInd = 1; jInd < jRoute.size(); ++jInd) { const bool finalSegment = ((jInd + 1) == jRoute.size()); |
