aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-02-16 19:15:28 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-02-16 19:15:28 +0000
commit886a7663c72cb04eaee58cb6997c394f5096a8b9 (patch)
treec8fbc933be9cc81182ba87744049ddbc24839336
parentb26f98fa1f098b527cc84ef7535fe84d89953c21 (diff)
downloadexternal_llvm-886a7663c72cb04eaee58cb6997c394f5096a8b9.zip
external_llvm-886a7663c72cb04eaee58cb6997c394f5096a8b9.tar.gz
external_llvm-886a7663c72cb04eaee58cb6997c394f5096a8b9.tar.bz2
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
-rw-r--r--include/llvm/IR/Attributes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h
index d3190ff..c0a34a0 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;