diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-26 05:00:42 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-02-26 05:00:42 +0000 |
| commit | ed6a509bb5e25b93bfa6705afcdda8cbbc5350b0 (patch) | |
| tree | a3eea7eb4fc9f74b8e04e9a456a58c5e18b8e27b | |
| parent | 01ac1707d64a7e3162005185f697c2a8061a774e (diff) | |
| download | bcm5719-llvm-ed6a509bb5e25b93bfa6705afcdda8cbbc5350b0.tar.gz bcm5719-llvm-ed6a509bb5e25b93bfa6705afcdda8cbbc5350b0.zip | |
IR: Use '= default' instead of r230609, NFC
Apparently we can use this now!
llvm-svn: 230613
| -rw-r--r-- | llvm/include/llvm/IR/DebugInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/IR/DebugInfo.h b/llvm/include/llvm/IR/DebugInfo.h index 91056b0fcb3..d2e59752080 100644 --- a/llvm/include/llvm/IR/DebugInfo.h +++ b/llvm/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<DIScope>(1); } DIDescriptorRef getEntity() const { return getFieldAs<DIDescriptorRef>(2); } |

