diff options
author | Kazu Hirata <kazu@google.com> | 2022-02-06 22:18:35 -0800 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-02-06 22:18:35 -0800 |
commit | 3a3cb929ab6fd69ea7d5db42db613a4701fa4669 (patch) | |
tree | 2ec87878da9b43c38c832eed4625d75f38960313 /llvm/lib/Support/DeltaAlgorithm.cpp | |
parent | 1391f91b1f62b9510e4b71737aac2b45d0c4d6cd (diff) | |
download | llvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.zip llvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.tar.gz llvm-3a3cb929ab6fd69ea7d5db42db613a4701fa4669.tar.bz2 |
[llvm] Use = default (NFC)
Diffstat (limited to 'llvm/lib/Support/DeltaAlgorithm.cpp')
-rw-r--r-- | llvm/lib/Support/DeltaAlgorithm.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/DeltaAlgorithm.cpp b/llvm/lib/Support/DeltaAlgorithm.cpp index a2017a1..341de24 100644 --- a/llvm/lib/Support/DeltaAlgorithm.cpp +++ b/llvm/lib/Support/DeltaAlgorithm.cpp @@ -11,8 +11,7 @@ #include <set> using namespace llvm; -DeltaAlgorithm::~DeltaAlgorithm() { -} +DeltaAlgorithm::~DeltaAlgorithm() = default; bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { if (FailedTestsCache.count(Changes)) |