Removing redundant namespace qualifiers in %union

This commit is contained in:
Stefano Sanfilippo 2014-11-28 19:07:47 +01:00
parent 4a8377ed71
commit 917f511479

View File

@ -67,26 +67,26 @@ static std::stack<BranchCaseList*> branchCaseStack;
double floatval; double floatval;
std::string* strval; std::string* strval;
bool boolval; bool boolval;
monicelli::Type typeval; Type typeval;
monicelli::Statement* statementval; Statement* statementval;
monicelli::StatementList* statlistval; StatementList* statlistval;
monicelli::Assert* assertval; Assert* assertval;
monicelli::FunctionCall* callval; FunctionCall* callval;
monicelli::Print* printval; Print* printval;
monicelli::Input* inputval; Input* inputval;
monicelli::Abort* abortval; Abort* abortval;
monicelli::Branch* branchval; Branch* branchval;
monicelli::VarDeclaration* declval; VarDeclaration* declval;
monicelli::Assignment* assignval; Assignment* assignval;
monicelli::Loop* loopval; Loop* loopval;
monicelli::BranchCase *caseval; BranchCase *caseval;
monicelli::Return* returnval; Return* returnval;
monicelli::Expression* expressionval; Expression* expressionval;
monicelli::SemiExpression *semiexpval; SemiExpression *semiexpval;
monicelli::Id* idval; Id* idval;
monicelli::Number* numericval; Number* numericval;
monicelli::Function* funval; Function* funval;
monicelli::Main* mainval; Main* mainval;
} }
%type<intval> NUMBER %type<intval> NUMBER