From: Simon Pilgrim Date: Sat, 25 Aug 2018 16:49:35 +0000 (+0000) Subject: Remove superfluous semicolon. NFCI. X-Git-Tag: llvmorg-8.0.0-rc1~10155 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9894733b6802605ce26016c69aea098e76c5a21c;p=platform%2Fupstream%2Fllvm.git Remove superfluous semicolon. NFCI. llvm-svn: 340686 --- diff --git a/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp b/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp index f7b8b98e..7023305 100644 --- a/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp +++ b/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp @@ -82,7 +82,7 @@ struct ProfileNode { template<> void ProfileNode::operator()(const ForwardTemplateReference *N) { llvm_unreachable("should never canonicalize a ForwardTemplateReference"); -}; +} void profileNode(llvm::FoldingSetNodeID &ID, const Node *N) { N->visit(ProfileNode{ID});