diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-02-16 19:15:28 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-02-16 19:15:28 +0000 |
commit | 886a7663c72cb04eaee58cb6997c394f5096a8b9 (patch) | |
tree | c8fbc933be9cc81182ba87744049ddbc24839336 /include | |
parent | b26f98fa1f098b527cc84ef7535fe84d89953c21 (diff) | |
download | external_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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/IR/Attributes.h | 2 |
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; |