fix return type

This commit is contained in:
Susan Hert 2002-11-04 10:44:03 +00:00
parent e49caf8da6
commit f7a773c63b
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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);
} }