General: Default constructors and destructors where applicable

This commit is contained in:
Lioncash
2018-01-23 21:11:07 -05:00
committed by MerryMage
parent d1e4526e1c
commit 8ee854232c
4 changed files with 4 additions and 4 deletions

View File

@@ -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);