Fix for Centos6/7 compilation issues

This commit is contained in:
Alex
2024-03-08 14:27:36 +02:00
parent 1f30136e21
commit f80b662f77
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ void ASTNodeList::removeLast()
void ASTNodeList::removeFirst()
{
m_nodes.erase(m_nodes.cbegin());
m_nodes.erase(m_nodes.begin());
}