From: Douglas Gregor Date: Sat, 19 Dec 2009 03:21:36 +0000 (+0000) Subject: Remove spurious semicolon. Thanks, Clang X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f8ca42ff59e01126c8bcfc41c3d35c8b73f1e8b3;p=oota-llvm.git Remove spurious semicolon. Thanks, Clang git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91752 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 852a4f3dab1..7b1931abcc6 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1228,7 +1228,7 @@ public: SDVTList getVTList() const { SDVTList X = { ValueList, NumValues }; return X; - }; + } /// getFlaggedNode - If this node has a flag operand, return the node /// to which the flag operand points. Otherwise return NULL.