aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Signposts.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2021-04-08 16:14:16 -0700
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2021-04-08 16:34:00 -0700
commitbf12b711f9ec322fd7fabb6919d975665df32b29 (patch)
tree531001347160eca39fbf15a77ddf4b6f4d0e73bb /llvm/lib/Support/Signposts.cpp
parent022ccedde8877e877b45e49641544b5e4fff0b42 (diff)
downloadllvm-bf12b711f9ec322fd7fabb6919d975665df32b29.zip
llvm-bf12b711f9ec322fd7fabb6919d975665df32b29.tar.gz
llvm-bf12b711f9ec322fd7fabb6919d975665df32b29.tar.bz2
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
Diffstat (limited to 'llvm/lib/Support/Signposts.cpp')
-rw-r--r--llvm/lib/Support/Signposts.cpp2
1 files changed, 1 insertions, 1 deletions
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())