ccollect:0.6.2->0.7.0
[nslu2-linux/optware.git] / sources / firedrill-httptunnel / find_if.patch
bloba777aa8a5bb880482489893374d1a0a4d9f71ab8
1 --- src/ThreadManager.cc.orig 2007-08-19 19:00:45.000000000 -0700
2 +++ src/ThreadManager.cc 2007-08-19 19:01:01.000000000 -0700
3 @@ -151,7 +151,7 @@
4 MutexVar mv(m_mtx);
6 // Remove thread from list of active threads
7 - std::vector<ThreadDetails*>::iterator i = find_if(m_threadDetails.begin(),
8 + std::vector<ThreadDetails*>::iterator i = std::find_if(m_threadDetails.begin(),
9 m_threadDetails.end(), PredGetDetails(thread));
10 if(i != m_threadDetails.end()) {
11 delete *i;