Skip to content
Snippets Groups Projects
Commit c4fe43d1 authored by Cinder's avatar Cinder
Browse files

Missed a std::function

parent af840ff5
No related branches found
No related tags found
No related merge requests found
...@@ -915,7 +915,7 @@ struct WalkExpected<LLTreeIter::BFS>: public Expected ...@@ -915,7 +915,7 @@ struct WalkExpected<LLTreeIter::BFS>: public Expected
template <class NODE, typename CHILDITER> template <class NODE, typename CHILDITER>
typename LLPtrTo<NODE>::type typename LLPtrTo<NODE>::type
get_B2b(const typename LLPtrTo<NODE>::type& root, get_B2b(const typename LLPtrTo<NODE>::type& root,
const boost::function<CHILDITER(const typename LLPtrTo<NODE>::type&)>& child_begin) const std::function<CHILDITER(const typename LLPtrTo<NODE>::type&)>& child_begin)
{ {
typedef typename LLPtrTo<NODE>::type NodePtr; typedef typename LLPtrTo<NODE>::type NodePtr;
CHILDITER Bi(child_begin(root)); CHILDITER Bi(child_begin(root));
......
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