mirror of https://github.com/CGAL/cgal
add missing * in a wrapper around output_iterator
This commit is contained in:
parent
e63e278e35
commit
7dfdf113c8
|
|
@ -60,7 +60,7 @@ struct Project_vertex_output_iterator
|
|||
template<class Vertex_pair>
|
||||
Project_vertex_output_iterator&
|
||||
operator=(const Vertex_pair& x){
|
||||
_base=std::make_pair(x.first->point(), x.second);
|
||||
*_base=std::make_pair(x.first->point(), x.second);
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue