summaryrefslogtreecommitdiff
path: root/include/llvm-c/Core.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-01-20 18:08:30 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-01-20 18:08:30 +0000
commit88e900808adf49ae35395544a169c15d2dc836f7 (patch)
tree7d7cd79448804ed80f27fdc9738d0d6c36bc245c /include/llvm-c/Core.h
parent164b86b4399559e45fab7846f1e3e09119cab4e2 (diff)
downloadllvm-88e900808adf49ae35395544a169c15d2dc836f7.tar.gz
llvm-88e900808adf49ae35395544a169c15d2dc836f7.tar.bz2
llvm-88e900808adf49ae35395544a169c15d2dc836f7.tar.xz
Don't use my favorite C++11 feature (comma at end of enum).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148555 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Core.h')
-rw-r--r--include/llvm-c/Core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index de60f77ddb..d5883dc8bb 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -119,7 +119,7 @@ typedef enum {
LLVMReturnsTwice = 1 << 29,
LLVMUWTable = 1 << 30,
LLVMNonLazyBind = 1U << 31,
- LLVMAddressSafety = 1ULL << 32,
+ LLVMAddressSafety = 1ULL << 32
} LLVMAttribute;
typedef enum {