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://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=886a7663c72cb04eaee58cb6997c394f5096a8b9;p=oota-llvm.git Remove comma at the end of enum. Still my favourite C++11 feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175372 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h index d3190ffae44..c0a34a01d00 100644 --- a/include/llvm/IR/Attributes.h +++ b/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;