Merge pull request #1961 from zoddicus/fixChromiumRoll
Remove std::move that is breaking chromium roll
This commit is contained in:
commit
5d0e01d9e7
1 changed files with 1 additions and 1 deletions
|
|
@ -252,7 +252,7 @@ public:
|
|||
assert(header != nullptr);
|
||||
Instruction* branch = new Instruction(OpBranch);
|
||||
branch->addIdOperand(header->getId());
|
||||
addInstruction(std::move(std::unique_ptr<Instruction>(branch)));
|
||||
addInstruction(std::unique_ptr<Instruction>(branch));
|
||||
successors.push_back(header);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue