zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c58e9951effddacfd5cef6c05019bc3f312747f8 (tree)
parent f2e380380e034a3f1a3e35857220edd78439a949
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon, 14 Sep 2020 10:31:34 -0700

revert bogus `enum` keywords in zig_llvm.h

Diffstat:
Msrc/zig_llvm.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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);