added std::
This commit is contained in:
parent
ff2968bd60
commit
1bac8a427a
1 changed files with 4 additions and 4 deletions
|
|
@ -298,7 +298,7 @@ public :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template <class Pred>
|
template <class Pred>
|
||||||
void find_nodes(vector<subtree*>& result, Pred& p)
|
void find_nodes(std::vector<subtree*>& result, Pred& p)
|
||||||
{
|
{
|
||||||
if (p(*content))
|
if (p(*content))
|
||||||
{
|
{
|
||||||
|
|
@ -312,7 +312,7 @@ public :
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class Pred>
|
template <class Pred>
|
||||||
void find_nodes(vector<const subtree*>& result, Pred& p) const
|
void find_nodes(std::vector<const subtree*>& result, Pred& p) const
|
||||||
{
|
{
|
||||||
if (p(*content))
|
if (p(*content))
|
||||||
{
|
{
|
||||||
|
|
@ -632,13 +632,13 @@ private :
|
||||||
// { _root.apply(v, varValues, moreValues, evenMoreValues); }
|
// { _root.apply(v, varValues, moreValues, evenMoreValues); }
|
||||||
|
|
||||||
template <class Pred>
|
template <class Pred>
|
||||||
void find_nodes(vector<subtree*>& result, Pred& p)
|
void find_nodes(std::vector<subtree*>& result, Pred& p)
|
||||||
{
|
{
|
||||||
_root.find_nodes(result, p);
|
_root.find_nodes(result, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class Pred>
|
template <class Pred>
|
||||||
void find_nodes(vector<const subtree*>& result, Pred& p) const
|
void find_nodes(std::vector<const subtree*>& result, Pred& p) const
|
||||||
{
|
{
|
||||||
_root.find_nodes(p);
|
_root.find_nodes(p);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue