summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibX86/Instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibX86/Instruction.h')
-rw-r--r--Userland/Libraries/LibX86/Instruction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibX86/Instruction.h b/Userland/Libraries/LibX86/Instruction.h
index e72599ddee..4cdfa4c416 100644
--- a/Userland/Libraries/LibX86/Instruction.h
+++ b/Userland/Libraries/LibX86/Instruction.h
@@ -279,7 +279,7 @@ enum MMXRegisterIndex {
class LogicalAddress {
public:
- LogicalAddress() { }
+ LogicalAddress() = default;
LogicalAddress(u16 selector, FlatPtr offset)
: m_selector(selector)
, m_offset(offset)
@@ -411,7 +411,7 @@ public:
LogicalAddress resolve(const CPU&, const Instruction&);
private:
- MemoryOrRegisterReference() { }
+ MemoryOrRegisterReference() = default;
String to_string(const Instruction&) const;
String to_string_a16() const;