aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-02-06 22:18:35 -0800
committerKazu Hirata <kazu@google.com>2022-02-06 22:18:35 -0800
commit3a3cb929ab6fd69ea7d5db42db613a4701fa4669 (patch)
tree2ec87878da9b43c38c832eed4625d75f38960313 /llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp
parent1391f91b1f62b9510e4b71737aac2b45d0c4d6cd (diff)
downloadllvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.zip
llvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.tar.gz
llvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.tar.bz2
[llvm] Use = default (NFC)
Diffstat (limited to 'llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp')
-rw-r--r--llvm/lib/ExecutionEngine/Orc/DebugObjectManagerPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
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 <typename ELFT>