Adjusted typedef to actually be a value instead of a reference

This commit is contained in:
Philipp Möller 2011-12-06 16:37:04 +00:00
parent 47c6bca3ed
commit 4d2480ffe0
1 changed files with 3 additions and 1 deletions

View File

@ -57,7 +57,9 @@ namespace CGAL {
private:
typename Construct_min_vertex_d::result_type min, max;
typename boost::remove_cv<
typename boost::remove_reference< typename Construct_min_vertex_d::result_type >::type
>::type min, max;
Cartesian_const_iterator_d min_begin, max_begin;
FT eps;
unsigned int dim;