Skip to content
Snippets Groups Projects
Commit 04c58d98 authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Suppression de l'appel à la fonction "time" pour pouvoir compiler sous Visual.

parent 8b28fc3d
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,8 @@ int main( int argc, char* argv[] )
LabelPointsContainer::Pointer lCont = LabelPointsContainer::New();
/* We learn the y>x | y<x boundary*/
srand((unsigned)time(0));
// srand((unsigned)time(0));
srand(0);
int lowest = 0;
int range = 1000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment