Prepare for StatementList

This commit is contained in:
Markus Hauschild
2013-06-01 01:53:15 +02:00
parent 1926014f00
commit b45834151b
2 changed files with 5 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ void ParameterList::accept(ASTVisitor* visitor) {
}
void ParameterList::addParameter(Type* type, std::string name) {
std::cout << "added parameter of type" << type->getName() << " and name " << name << std::endl;
std::cout << "added parameter of type " << type->getName() << " and name " << name << std::endl;
params_.push_back(Parameter(type, name));
}