# HG changeset patch # User alpar # Date 1111225467 0 # Node ID 0a7719037acb7e158f14352fcc8559af84620677 # Parent 01f668e3e1688edb079cc2309bfee7f61b0a39f2 A strange compilation failure (under cygwin) is fixed. Version 0.3 should be fixed as well. diff -r 01f668e3e168 -r 0a7719037acb src/lemon/concept/path.h --- a/src/lemon/concept/path.h Sat Mar 19 09:38:31 2005 +0000 +++ b/src/lemon/concept/path.h Sat Mar 19 09:44:27 2005 +0000 @@ -183,7 +183,8 @@ ///\param _P the path you want to fill in. /// - Builder(Path &_P) : P(_P) {} + + Builder(Path &_p) : P(_p) {} /// Sets the starting node of the path. diff -r 01f668e3e168 -r 0a7719037acb src/lemon/path.h --- a/src/lemon/path.h Sat Mar 19 09:38:31 2005 +0000 +++ b/src/lemon/path.h Sat Mar 19 09:44:27 2005 +0000 @@ -272,9 +272,9 @@ Container front, back; public: - ///\param _P the path you want to fill in. + ///\param _p the path you want to fill in. /// - Builder(DirPath &_P) : P(_P) {} + Builder(DirPath &_p) : P(_p) {} /// Sets the starting node of the path. @@ -609,9 +609,9 @@ Container front, back; public: - ///\param _P the path you want to fill in. + ///\param _p the path you want to fill in. /// - Builder(UndirPath &_P) : P(_P) {} + Builder(UndirPath &_p) : P(_p) {} /// Sets the starting node of the path.