R -> R as VC2015 has a matching problem

This commit is contained in:
Andreas Fabri 2015-07-29 16:56:17 +02:00
parent 8a0a14a051
commit 61f61f96fd
2 changed files with 10 additions and 10 deletions

View File

@ -101,19 +101,19 @@ public:
}
typename cpp11::result_of<typename R::Construct_min_vertex_2( Segment_2)>::type
typename cpp11::result_of<typename R_::Construct_min_vertex_2(Segment_2)>::type
min BOOST_PREVENT_MACRO_SUBSTITUTION() const;
typename cpp11::result_of<typename R::Construct_max_vertex_2( Segment_2)>::type
typename cpp11::result_of<typename R_::Construct_max_vertex_2( Segment_2)>::type
max BOOST_PREVENT_MACRO_SUBSTITUTION () const;
typename cpp11::result_of<typename R::Construct_vertex_2( Segment_2, int)>::type
typename cpp11::result_of<typename R_::Construct_vertex_2( Segment_2, int)>::type
vertex(int i) const;
typename cpp11::result_of<typename R::Construct_vertex_2( Segment_2, int)>::type
typename cpp11::result_of<typename R_::Construct_vertex_2( Segment_2, int)>::type
point(int i) const;
typename cpp11::result_of<typename R::Construct_vertex_2( Segment_2, int)>::type
typename cpp11::result_of<typename R_::Construct_vertex_2( Segment_2, int)>::type
operator[](int i) const;
bool is_horizontal() const;

View File

@ -98,13 +98,13 @@ public:
return target();
}
typename cpp11::result_of<typename R::Construct_min_vertex_3(Segment_3)>::type
typename cpp11::result_of<typename R_::Construct_min_vertex_3(Segment_3)>::type
min BOOST_PREVENT_MACRO_SUBSTITUTION () const;
typename cpp11::result_of<typename R::Construct_max_vertex_3(Segment_3)>::type
typename cpp11::result_of<typename R_::Construct_max_vertex_3(Segment_3)>::type
max BOOST_PREVENT_MACRO_SUBSTITUTION () const;
typename cpp11::result_of<typename R::Construct_vertex_3(Segment_3, int)>::type
typename cpp11::result_of<typename R_::Construct_vertex_3(Segment_3, int)>::type
vertex(int i) const;
typename cpp11::result_of<typename R::Construct_vertex_3(Segment_3, int)>::type