Skip to content

Commit

Permalink
fixed script compiler code ordering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zinnschlag committed Sep 9, 2014
1 parent b2e8d61 commit 14f3256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/compiler/lineparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ namespace Compiler

std::vector<Interpreter::Type_Code> code;
optionals = mExprParser.parseArguments (argumentType, scanner, code);
mCode.insert (mCode.begin(), code.begin(), code.end());
mCode.insert (mCode.end(), code.begin(), code.end());
extensions->generateInstructionCode (keyword, mCode, mLiterals,
mExplicit, optionals);
}
Expand Down

0 comments on commit 14f3256

Please sign in to comment.