| 1173 | //------------------------------------------------------------------------ |
| 1174 | template <class VC> |
| 1175 | inline void path_base<VC>::end_poly(unsigned flags) |
| 1176 | { |
| 1177 | if (is_vertex(m_vertices.last_command())) |
| 1178 | { |
| 1179 | m_vertices.add_vertex(0.0, 0.0, path_cmd_end_poly | flags); |
| 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | //------------------------------------------------------------------------ |
| 1184 | template <class VC> |
nothing calls this directly
no test coverage detected