From c58e9951effddacfd5cef6c05019bc3f312747f8 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 14 Sep 2020 10:31:34 -0700 Subject: [PATCH] revert bogus `enum` keywords in zig_llvm.h --- src/zig_llvm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zig_llvm.h b/src/zig_llvm.h index 13c4de0535..4de048a3d8 100644 --- a/src/zig_llvm.h +++ b/src/zig_llvm.h @@ -59,8 +59,8 @@ enum ZigLLVMABIType { }; ZIG_EXTERN_C LLVMTargetMachineRef ZigLLVMCreateTargetMachine(LLVMTargetRef T, const char *Triple, - const char *CPU, const char *Features, enum LLVMCodeGenOptLevel Level, enum LLVMRelocMode Reloc, - enum LLVMCodeModel CodeModel, bool function_sections, enum ZigLLVMABIType float_abi, const char *abi_name); + const char *CPU, const char *Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, + LLVMCodeModel CodeModel, bool function_sections, enum ZigLLVMABIType float_abi, const char *abi_name); ZIG_EXTERN_C LLVMTypeRef ZigLLVMTokenTypeInContext(LLVMContextRef context_ref);