git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272506
91177308-0d34-0410-b5e6-
96231b3b80d8
* going through the C API deprecation cycle.
*/
unsigned LLVMGetEnumAttributeKindForName(const char *Name, size_t SLen);
-unsigned LLVMGetLastEnumAttributeKind();
+unsigned LLVMGetLastEnumAttributeKind(void);
/**
* Create an enum attribute.
return getAttrKindFromName(StringRef(Name, SLen));
}
-unsigned LLVMGetLastEnumAttributeKind() {
+unsigned LLVMGetLastEnumAttributeKind(void) {
return Attribute::AttrKind::EndAttrKinds;
}