* fixed regression with gcc 4.7

This commit is contained in:
Caner Candan 2012-06-23 13:39:17 +02:00
commit d44a696e21
4 changed files with 6 additions and 4 deletions

View file

@ -94,7 +94,7 @@ public:
while (size() > _size)
{
back() = operator[](size()-2);
back() = this->operator[](size()-2);
}
}
@ -150,7 +150,7 @@ public:
v[i] = node;
}
parse_tree<Node> tmp(v.begin(), v.end());
swap(tmp);
this->swap(tmp);
/*
* old code which caused problems for paradisEO