From 47a084f42d1f4b7220755c9cf9219acf34ec0f3e Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Thu, 26 Feb 2015 05:00:42 +0000 Subject: [PATCH] IR: Use '= default' instead of r230609, NFC Apparently we can use this now! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230613 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/DebugInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/DebugInfo.h b/include/llvm/IR/DebugInfo.h index 91056b0fcb3..d2e59752080 100644 --- a/include/llvm/IR/DebugInfo.h +++ b/include/llvm/IR/DebugInfo.h @@ -1030,7 +1030,7 @@ class DIImportedEntity : public DIDescriptor { void printInternal(raw_ostream &OS) const; public: - DIImportedEntity() {} + DIImportedEntity() = default; explicit DIImportedEntity(const MDNode *N) : DIDescriptor(N) {} DIScope getContext() const { return getFieldAs(1); } DIDescriptorRef getEntity() const { return getFieldAs(2); }