"ts/webui/src/vscode:/vscode.git/clone" did not exist on "1418a366bc537ce9166b3e18cdbedd84ad406f8c"
Commit 2f25e1d9 authored by Paul's avatar Paul
Browse files

Format

parent 68238cc9
......@@ -415,10 +415,10 @@ struct find_concat_op
void move_instructions_back(module& m, instruction_ref pos, std::vector<instruction_ref> inss)
{
auto start = range(m.begin(), pos);
for(auto ins:iterator_for(start))
for(auto ins : iterator_for(start))
{
auto it = std::find(inss.begin(), inss.end(), ins);
if (it != inss.end())
if(it != inss.end())
inss.erase(it);
}
for(auto ins : inss)
......
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