From 886a7663c72cb04eaee58cb6997c394f5096a8b9 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 16 Feb 2013 19:15:28 +0000 Subject: [PATCH] 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 --- include/llvm/IR/Attributes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1