add missing result type

This commit is contained in:
Sébastien Loriot 2011-06-24 10:49:23 +00:00
parent de4be5908b
commit 8f88360109
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ template <class Vertex_handle>
struct Construct_cartesian_const_iterator_vertex_handle_3
{
typedef CGAL::Point_vertex_handle_3<Vertex_handle> Point_vertex_handle_3;
typedef const double* result_type;
const double* operator()(const Point_vertex_handle_3& p) const
{ return static_cast<const double*>(p.m_coord); }