| 234 | //------------------------------------------------------------------------ |
| 235 | template <class T, unsigned S, unsigned P> |
| 236 | inline unsigned vertex_block_storage<T, S, P>::last_vertex( |
| 237 | double* x, double* y) const |
| 238 | { |
| 239 | if (m_total_vertices) |
| 240 | return vertex(m_total_vertices - 1, x, y); |
| 241 | return path_cmd_stop; |
| 242 | } |
| 243 | |
| 244 | //------------------------------------------------------------------------ |
| 245 | template <class T, unsigned S, unsigned P> |
no outgoing calls
no test coverage detected