Kaydet (Commit) a39cc574 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: one more bind -> boost::bind

Change-Id: I6f3d36f0b0775559f3f0617d273a4f4595feda76
üst 57248316
...@@ -843,7 +843,7 @@ namespace sw { namespace mark ...@@ -843,7 +843,7 @@ namespace sw { namespace mark
find_if( find_if(
pMarkLow, pMarkLow,
pMarkHigh, pMarkHigh,
boost::bind(equal_to<const IMark*>(), bind(&boost::shared_ptr<IMark>::get, _1), pMark) ); boost::bind(equal_to<const IMark*>(), boost::bind(&boost::shared_ptr<IMark>::get, _1), pMark) );
if(pMarkFound != pMarkHigh) if(pMarkFound != pMarkHigh)
deleteMark(pMarkFound); deleteMark(pMarkFound);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment