Fixed the triple string RegEx. Had included quotes in the main part of the RegEx by accident.

This commit is contained in:
Nathan Braswell
2014-01-07 21:43:39 -05:00
parent 0d47a03986
commit 00ef8f0a7c
2 changed files with 7 additions and 7 deletions

View File

@@ -304,7 +304,7 @@ Type* ASTTransformation::typeFromString(std::string typeIn, NodeTree<ASTData>* s
else {
baseType = none;
typeDefinition = scopeLookup(scope, edited);
std::cout << "scopeLookup of type " << edited << " returned " << typeDefinition << std::endl;
//std::cout << "scopeLookup of type " << edited << " returned " << typeDefinition << std::endl;
}
return new Type(baseType, typeDefinition, indirection);
}