A strange compilation failure (under cygwin) is fixed.
Version 0.3 should be fixed as well.
1.1 --- a/src/lemon/concept/path.h Sat Mar 19 09:38:31 2005 +0000
1.2 +++ b/src/lemon/concept/path.h Sat Mar 19 09:44:27 2005 +0000
1.3 @@ -183,7 +183,8 @@
1.4
1.5 ///\param _P the path you want to fill in.
1.6 ///
1.7 - Builder(Path &_P) : P(_P) {}
1.8 +
1.9 + Builder(Path &_p) : P(_p) {}
1.10
1.11 /// Sets the starting node of the path.
1.12
2.1 --- a/src/lemon/path.h Sat Mar 19 09:38:31 2005 +0000
2.2 +++ b/src/lemon/path.h Sat Mar 19 09:44:27 2005 +0000
2.3 @@ -272,9 +272,9 @@
2.4 Container front, back;
2.5
2.6 public:
2.7 - ///\param _P the path you want to fill in.
2.8 + ///\param _p the path you want to fill in.
2.9 ///
2.10 - Builder(DirPath &_P) : P(_P) {}
2.11 + Builder(DirPath &_p) : P(_p) {}
2.12
2.13 /// Sets the starting node of the path.
2.14
2.15 @@ -609,9 +609,9 @@
2.16 Container front, back;
2.17
2.18 public:
2.19 - ///\param _P the path you want to fill in.
2.20 + ///\param _p the path you want to fill in.
2.21 ///
2.22 - Builder(UndirPath &_P) : P(_P) {}
2.23 + Builder(UndirPath &_p) : P(_p) {}
2.24
2.25 /// Sets the starting node of the path.
2.26