[Lemon-commits] [lemon_svn] alpar: r1650 - in hugo/branches/lemon-0.3-cygwin-fix: . doc src/lemon 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 11:08:10 2005
New Revision: 1650
Modified:
hugo/branches/lemon-0.3-cygwin-fix/configure.ac
hugo/branches/lemon-0.3-cygwin-fix/doc/Doxyfile
hugo/branches/lemon-0.3-cygwin-fix/src/lemon/concept/path.h
hugo/branches/lemon-0.3-cygwin-fix/src/lemon/path.h
Log:
- Cygwin compilation bug fixed (-r1648 applied)
- Version number changed to 0.3.1
Modified: hugo/branches/lemon-0.3-cygwin-fix/configure.ac
==============================================================================
--- hugo/branches/lemon-0.3-cygwin-fix/configure.ac (original)
+++ hugo/branches/lemon-0.3-cygwin-fix/configure.ac Sat Mar 19 11:08:10 2005
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([LEMON], [0.3], [etik-ol at cs.elte.hu], [lemon])
+AC_INIT([LEMON], [0.3.1], [etik-ol at cs.elte.hu], [lemon])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE(1.7)
AC_CONFIG_SRCDIR([src/lemon/invalid.h])
Modified: hugo/branches/lemon-0.3-cygwin-fix/doc/Doxyfile
==============================================================================
--- hugo/branches/lemon-0.3-cygwin-fix/doc/Doxyfile (original)
+++ hugo/branches/lemon-0.3-cygwin-fix/doc/Doxyfile Sat Mar 19 11:08:10 2005
@@ -23,7 +23,7 @@
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.3
+PROJECT_NUMBER = 0.3.1
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Modified: hugo/branches/lemon-0.3-cygwin-fix/src/lemon/concept/path.h
==============================================================================
--- hugo/branches/lemon-0.3-cygwin-fix/src/lemon/concept/path.h (original)
+++ hugo/branches/lemon-0.3-cygwin-fix/src/lemon/concept/path.h Sat Mar 19 11:08:10 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/branches/lemon-0.3-cygwin-fix/src/lemon/path.h
==============================================================================
--- hugo/branches/lemon-0.3-cygwin-fix/src/lemon/path.h (original)
+++ hugo/branches/lemon-0.3-cygwin-fix/src/lemon/path.h Sat Mar 19 11:08:10 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