mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-11 00:36:29 +00:00
General: Default constructors and destructors where applicable
This commit is contained in:
@@ -34,7 +34,7 @@ void EmitContext::EraseInstruction(IR::Inst* inst) {
|
||||
EmitX64::EmitX64(BlockOfCode* code)
|
||||
: code(code) {}
|
||||
|
||||
EmitX64::~EmitX64() {}
|
||||
EmitX64::~EmitX64() = default;
|
||||
|
||||
boost::optional<typename EmitX64::BlockDescriptor> EmitX64::GetBasicBlock(IR::LocationDescriptor descriptor) const {
|
||||
auto iter = block_descriptors.find(descriptor);
|
||||
|
||||
Reference in New Issue
Block a user