summaryrefslogtreecommitdiff
path: root/boost/polygon/detail/property_merge.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/polygon/detail/property_merge.hpp')
-rw-r--r--boost/polygon/detail/property_merge.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/polygon/detail/property_merge.hpp b/boost/polygon/detail/property_merge.hpp
index b0c843b5de..6ea0161b05 100644
--- a/boost/polygon/detail/property_merge.hpp
+++ b/boost/polygon/detail/property_merge.hpp
@@ -458,7 +458,7 @@ private:
processVertex(output);
//std::cout << scanline.size() << " ";
countFromBelow.clear(); //should already be clear
- writeGraph(currentVertex.first.x(), result, output, scanline);
+ writeGraph(result, output, scanline);
currentVertex.second.clear();
mergeProperty(currentVertex.second, data[i].second);
currentVertex.first = data[i].first;
@@ -474,7 +474,7 @@ private:
}
}
processVertex(output);
- writeGraph(currentVertex.first.x(), result, output, scanline);
+ writeGraph(result, output, scanline);
//std::cout << scanline.size() << "\n";
}
@@ -509,7 +509,7 @@ private:
}
template <typename T, typename T2>
- inline void writeGraph(coordinate_type x, T& graph, edge_property_vector& output, T2& scanline) {
+ inline void writeGraph(T& graph, edge_property_vector& output, T2& scanline) {
if(output.empty()) return;
edge_property* previousEdgeP = &(output[0]);
bool firstIteration = true;