1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 b10eb80a4b
commit f687ed1ec6

View File

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