Commit a5ac3b5d authored by miloyip's avatar miloyip

Remove an unused line of code

parent 960bc0ea
...@@ -462,7 +462,6 @@ private: ...@@ -462,7 +462,6 @@ private:
void CloneTopOperand(Stack<Allocator>& operandStack) { void CloneTopOperand(Stack<Allocator>& operandStack) {
const Frag *src = operandStack.template Top<Frag>(); const Frag *src = operandStack.template Top<Frag>();
SizeType minIndex = minIndex;
SizeType count = stateCount_ - src->minIndex; // Assumes top operand contains states in [src->minIndex, stateCount_) SizeType count = stateCount_ - src->minIndex; // Assumes top operand contains states in [src->minIndex, stateCount_)
State* s = states_.template Push<State>(count); State* s = states_.template Push<State>(count);
memcpy(s, &GetState(src->minIndex), count * sizeof(State)); memcpy(s, &GetState(src->minIndex), count * sizeof(State));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment