[Lemon-commits] [lemon_svn] alpar: r1648 - in hugo/trunk/src/lemon: . concept
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:46:47 CET 2006
Author: alpar
Date: Sat Mar 19 10:44:27 2005
New Revision: 1648
Modified:
hugo/trunk/src/lemon/concept/path.h
hugo/trunk/src/lemon/path.h
Log:
A strange compilation failure (under cygwin) is fixed.
Version 0.3 should be fixed as well.
Modified: hugo/trunk/src/lemon/concept/path.h
==============================================================================
--- hugo/trunk/src/lemon/concept/path.h (original)
+++ hugo/trunk/src/lemon/concept/path.h Sat Mar 19 10:44:27 2005
@@ -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.
Modified: hugo/trunk/src/lemon/path.h
==============================================================================
--- hugo/trunk/src/lemon/path.h (original)
+++ hugo/trunk/src/lemon/path.h Sat Mar 19 10:44:27 2005
@@ -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.
More information about the Lemon-commits
mailing list