From 3a3cb929ab6fd69ea7d5db42db613a4701fa4669 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sun, 6 Feb 2022 22:18:35 -0800 Subject: [llvm] Use = default (NFC) --- llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp') diff --git a/llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp b/llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp index 4ff6b7f..1e68ea1 100644 --- a/llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp +++ b/llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp @@ -42,7 +42,7 @@ class DebugObjectSection { public: virtual void setTargetMemoryRange(SectionRange Range) = 0; virtual void dump(raw_ostream &OS, StringRef Name) {} - virtual ~DebugObjectSection() {} + virtual ~DebugObjectSection() = default; }; template -- cgit v1.1