From: Duncan P. N. Exon Smith Date: Thu, 26 Feb 2015 05:00:42 +0000 (+0000) Subject: IR: Use '= default' instead of r230609, NFC X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=47a084f42d1f4b7220755c9cf9219acf34ec0f3e;p=oota-llvm.git 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 --- 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); }