Update for windows compatibility

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@359 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2007-06-25 15:44:52 +00:00
commit f9693d1e1c
229 changed files with 3759 additions and 2398 deletions

View file

@ -35,7 +35,7 @@ public:
\param __max_iter the iteration maximum number.
*/
moItRandNextMove (moRandMove < M > &__rand_move,
unsigned __max_iter):rand_move (__rand_move),
unsigned int __max_iter):rand_move (__rand_move),
max_iter (__max_iter), num_iter (0)
{
@ -74,10 +74,10 @@ private:
moRandMove < M > &rand_move;
//! Iteration maximum number.
unsigned max_iter;
unsigned int max_iter;
//! Iteration current number.
unsigned num_iter;
unsigned int num_iter;
};