[llvm] f38767d - [llvm] Remove redundant `;` (NFC)
Amir Ayupov via llvm-commits
llvm-commits at lists.llvm.org
Sun Jan 30 22:46:02 PST 2022
Author: Amir Ayupov
Date: 2022-01-30T22:44:39-08:00
New Revision: f38767d7715616d9a415af88deed583cad96ef9b
URL: https://github.com/llvm/llvm-project/commit/f38767d7715616d9a415af88deed583cad96ef9b
DIFF: https://github.com/llvm/llvm-project/commit/f38767d7715616d9a415af88deed583cad96ef9b.diff
LOG: [llvm] Remove redundant `;` (NFC)
Added:
Modified:
llvm/include/llvm/MC/MCPseudoProbe.h
llvm/include/llvm/Support/ScopedPrinter.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/MC/MCPseudoProbe.h b/llvm/include/llvm/MC/MCPseudoProbe.h
index 16a079a42d92d..9ff68f4236cae 100644
--- a/llvm/include/llvm/MC/MCPseudoProbe.h
+++ b/llvm/include/llvm/MC/MCPseudoProbe.h
@@ -269,7 +269,6 @@ class MCDecodedPseudoProbeInlineTree
uint32_t ChildrenToProcess = 0;
MCDecodedPseudoProbeInlineTree() = default;
- ;
MCDecodedPseudoProbeInlineTree(const InlineSite &Site) : ISite(Site){};
// Return false if it's a dummy inline site
diff --git a/llvm/include/llvm/Support/ScopedPrinter.h b/llvm/include/llvm/Support/ScopedPrinter.h
index 8a42db9d89c8e..6b5daf710c9fa 100644
--- a/llvm/include/llvm/Support/ScopedPrinter.h
+++ b/llvm/include/llvm/Support/ScopedPrinter.h
@@ -793,7 +793,6 @@ struct DelimitedScope {
DelimitedScope(ScopedPrinter &W) : W(&W) {}
DelimitedScope() : W(nullptr) {}
virtual ~DelimitedScope() = default;
- ;
virtual void setPrinter(ScopedPrinter &W) = 0;
ScopedPrinter *W;
};
More information about the llvm-commits
mailing list