Skip to content
Snippets Groups Projects
Commit f9fb8671 authored by Christian Engwer's avatar Christian Engwer
Browse files

randomizeListFront did not test push_front

[[Imported from SVN: r1979]]
parent 04eeffea
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ void randomizeListFront(Dune::SLList<T,A>& alist){
int lowest=0, highest=1000, range=(highest-lowest)+1;
for(int i=0; i < 10; i++)
alist.push_back((range*(rand()/(RAND_MAX+1.0))));
alist.push_front((range*(rand()/(RAND_MAX+1.0))));
}
int testDelete()
......
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