add missing * in a wrapper around output_iterator

This commit is contained in:
Sébastien Loriot 2010-10-26 14:14:15 +00:00
parent e63e278e35
commit 7dfdf113c8
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ struct Project_vertex_output_iterator
template<class Vertex_pair> template<class Vertex_pair>
Project_vertex_output_iterator& Project_vertex_output_iterator&
operator=(const Vertex_pair& x){ 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; return *this;
} }
}; };