From: Benjamin Kramer Date: Fri, 20 Jan 2012 18:08:30 +0000 (+0000) Subject: Don't use my favorite C++11 feature (comma at end of enum). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=88e900808adf49ae35395544a169c15d2dc836f7;p=oota-llvm.git 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 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index de60f77ddbd..d5883dc8bb3 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 {