mirror of https://github.com/CGAL/cgal
fix return type
This commit is contained in:
parent
e49caf8da6
commit
f7a773c63b
|
|
@ -1,3 +1,6 @@
|
||||||
|
1.42 (4 Nov 2002)
|
||||||
|
- fix return type in indirect traits
|
||||||
|
|
||||||
1.41 (30 Oct 2002)
|
1.41 (30 Oct 2002)
|
||||||
- fix type redeclaration in indirect traits
|
- fix type redeclaration in indirect traits
|
||||||
- add some documentation for the vertex visibility graph
|
- add some documentation for the vertex visibility graph
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,7 @@ class Construct_indirect_segment_2
|
||||||
public:
|
public:
|
||||||
typedef Indirect_segment<Circulator> I_segment;
|
typedef Indirect_segment<Circulator> I_segment;
|
||||||
|
|
||||||
Indirect_segment operator()(Circulator p1, Circulator p2)
|
I_segment operator()(Circulator p1, Circulator p2)
|
||||||
{
|
{
|
||||||
return I_segment(p1, p2);
|
return I_segment(p1, p2);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue