mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 04:34:43 +01:00
Revert "basic_block: Mark move constructor and assignment as noexcept"
This reverts commit 4f12e86ebb.
Big fan of MSVC preventing standard behavior.
This commit is contained in:
parent
889635d17d
commit
0e1112b7df
2 changed files with 4 additions and 4 deletions
|
|
@ -27,9 +27,9 @@ Block::Block(const LocationDescriptor& location)
|
|||
|
||||
Block::~Block() = default;
|
||||
|
||||
Block::Block(Block&&) noexcept = default;
|
||||
Block::Block(Block&&) = default;
|
||||
|
||||
Block& Block::operator=(Block&&) noexcept = default;
|
||||
Block& Block::operator=(Block&&) = default;
|
||||
|
||||
void Block::AppendNewInst(Opcode opcode, std::initializer_list<IR::Value> args) {
|
||||
PrependNewInst(end(), opcode, args);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue