Index: src/IceGlobalInits.h |
diff --git a/src/IceGlobalInits.h b/src/IceGlobalInits.h |
index 754f181d510ac47ced3185e384b04c1848ff249f..824f704578812fe112f10c80852d111f4d673f89 100644 |
--- a/src/IceGlobalInits.h |
+++ b/src/IceGlobalInits.h |
@@ -54,7 +54,7 @@ public: |
void setLinkage(llvm::GlobalValue::LinkageTypes NewLinkage) { |
Linkage = NewLinkage; |
} |
- virtual ~GlobalDeclaration() {} |
+ virtual ~GlobalDeclaration() = default; |
/// Prints out type of the global declaration. |
virtual void dumpType(Ostream &Stream) const = 0; |
@@ -142,7 +142,7 @@ public: |
RelocInitializerKind |
}; |
InitializerKind getKind() const { return Kind; } |
- virtual ~Initializer() {} |
+ virtual ~Initializer() = default; |
virtual SizeT getNumBytes() const = 0; |
virtual void dump(GlobalContext *Ctx, Ostream &Stream) const = 0; |
void dump(Ostream &Stream) const { |