SLUDGE: Some code cleaning

This commit is contained in:
Simei Yin 2017-08-21 09:10:41 +02:00
parent d9a6791500
commit a9ee51d6ce
6 changed files with 0 additions and 27 deletions

View file

@ -430,14 +430,6 @@ bool makeFastArrayFromStack(Variable &to, const StackHandler *stacky) {
return true;
}
/*
bool moveVariable (Variable & from, Variable & to) {
unlinkVar (to);
memcpy (& to, & from, sizeof (variable));
from.varType = SVT_NULL;
}
*/
bool addVarToStack(const Variable &va, VariableStack *&thisStack) {
VariableStack *newStack = new VariableStack;
if (!checkNew(newStack))