From bf12b711f9ec322fd7fabb6919d975665df32b29 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Thu, 8 Apr 2021 16:14:16 -0700 Subject: Support: Drop the no-op initializer for SignpostEmitterImpl::Signposts, NFC This is a DenseMap, which has its own initializer; we don't need to explicitly call the default constructor here. Differential Revision: https://reviews.llvm.org/D100152 --- llvm/lib/Support/Signposts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support/Signposts.cpp') diff --git a/llvm/lib/Support/Signposts.cpp b/llvm/lib/Support/Signposts.cpp index c85bab4..80ef7d1 100644 --- a/llvm/lib/Support/Signposts.cpp +++ b/llvm/lib/Support/Signposts.cpp @@ -59,7 +59,7 @@ class SignpostEmitterImpl { } public: - SignpostEmitterImpl() : SignpostLog(LogCreator(), LogDeleter), Signposts() {} + SignpostEmitterImpl() : SignpostLog(LogCreator(), LogDeleter) {} bool isEnabled() const { if (SIGNPOSTS_AVAILABLE()) -- cgit v1.1