From f38767d7715616d9a415af88deed583cad96ef9b Mon Sep 17 00:00:00 2001 From: Amir Ayupov Date: Sun, 30 Jan 2022 22:36:53 -0800 Subject: [PATCH] [llvm] Remove redundant `;` (NFC) --- llvm/include/llvm/MC/MCPseudoProbe.h | 1 - llvm/include/llvm/Support/ScopedPrinter.h | 1 - 2 files changed, 2 deletions(-) diff --git a/llvm/include/llvm/MC/MCPseudoProbe.h b/llvm/include/llvm/MC/MCPseudoProbe.h index 16a079a..9ff68f4 100644 --- a/llvm/include/llvm/MC/MCPseudoProbe.h +++ b/llvm/include/llvm/MC/MCPseudoProbe.h @@ -269,7 +269,6 @@ public: 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 8a42db9..6b5daf7 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; }; -- 2.7.4