Merge pull request #1940 from tsuoranta/fix-gcc9

Fix for GCC 9 / Werror=deprecated-copy
This commit is contained in:
John Kessenich
2020-01-27 01:02:08 -07:00
committed by GitHub
4 changed files with 11 additions and 8 deletions

View File

@@ -512,7 +512,7 @@ public:
Block &head, &body, &merge, &continue_target;
private:
LoopBlocks();
LoopBlocks& operator=(const LoopBlocks&);
LoopBlocks& operator=(const LoopBlocks&) = delete;
};
// Start a new loop and prepare the builder to generate code for it. Until