[llvm] r175372 - Remove comma at the end of enum. Still my favourite C++11 feature.

Benjamin Kramer benny.kra at googlemail.com
Sat Feb 16 11:15:29 PST 2013


Author: d0k
Date: Sat Feb 16 13:15:28 2013
New Revision: 175372

URL: http://llvm.org/viewvc/llvm-project?rev=175372&view=rev
Log:
Remove comma at the end of enum. Still my favourite C++11 feature.

Modified:
    llvm/trunk/include/llvm/IR/Attributes.h

Modified: llvm/trunk/include/llvm/IR/Attributes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Attributes.h?rev=175372&r1=175371&r2=175372&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Attributes.h (original)
+++ llvm/trunk/include/llvm/IR/Attributes.h Sat Feb 16 13:15:28 2013
@@ -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;





More information about the llvm-commits mailing list