From: Benjamin Kramer Date: Sat, 16 Feb 2013 19:15:28 +0000 (+0000) Subject: Remove comma at the end of enum. Still my favourite C++11 feature. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cae143dc1b996b99f65cceb9bb8337a4b61b0b8a;p=platform%2Fupstream%2Fllvm.git Remove comma at the end of enum. Still my favourite C++11 feature. llvm-svn: 175372 --- diff --git a/llvm/include/llvm/IR/Attributes.h b/llvm/include/llvm/IR/Attributes.h index d3190ff..c0a34a01 100644 --- a/llvm/include/llvm/IR/Attributes.h +++ b/llvm/include/llvm/IR/Attributes.h @@ -101,7 +101,7 @@ public: UWTable, ///< Function must be in a unwind table ZExt, ///< Zero extended before/after call - EndAttrKinds, ///< Sentinal value useful for loops + EndAttrKinds ///< Sentinal value useful for loops }; private: AttributeImpl *pImpl;