Removed superfluous semicolon to fix -Wpedantic gcc warning. NFCI.

llvm-svn: 325168
This commit is contained in:
Simon Pilgrim 2018-02-14 20:43:47 +00:00
parent 19d8655ce4
commit 668664889c
1 changed files with 1 additions and 1 deletions

View File

@ -33,6 +33,6 @@ public:
MCAsmMacro(StringRef N, StringRef B, MCAsmMacroParameters P) MCAsmMacro(StringRef N, StringRef B, MCAsmMacroParameters P)
: Name(N), Body(B), Parameters(std::move(P)) {} : Name(N), Body(B), Parameters(std::move(P)) {}
}; };
}; // namespace llvm } // namespace llvm
#endif #endif