diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-14 13:57:57 -0800 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2019-11-19 13:18:43 -0800 |
commit | 8c48405069085a2c8b6b80816eda99e5dad31fc1 (patch) | |
tree | af6a315cb0f8eecea89547b692c07964b0238ba1 /llvm/include/llvm-c/Error.h | |
parent | 3a8104a9ea3d88fb4d0ef17185e420c814757bfd (diff) | |
download | bcm5719-llvm-8c48405069085a2c8b6b80816eda99e5dad31fc1.tar.gz bcm5719-llvm-8c48405069085a2c8b6b80816eda99e5dad31fc1.zip |
Wrap C APIs with pragmas enforcing -Werror=strict-prototypes
Force `-Werror=strict-prototypes` so that C API tests fail to compile if
we add a non-prototype declaration. This should help avoid regressions
like bddecba4b333f7772029b4937d2c34f9f2fda6ca was fixing.
https://reviews.llvm.org/D70285
rdar://problem/57203137
Diffstat (limited to 'llvm/include/llvm-c/Error.h')
-rw-r--r-- | llvm/include/llvm-c/Error.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/include/llvm-c/Error.h b/llvm/include/llvm-c/Error.h index 52943063c69..92f81bf3830 100644 --- a/llvm/include/llvm-c/Error.h +++ b/llvm/include/llvm-c/Error.h @@ -14,9 +14,9 @@ #ifndef LLVM_C_ERROR_H #define LLVM_C_ERROR_H -#ifdef __cplusplus -extern "C" { -#endif +#include "llvm-c/ExternC.h" + +LLVM_C_EXTERN_C_BEGIN #define LLVMErrorSuccess 0 @@ -62,8 +62,6 @@ void LLVMDisposeErrorMessage(char *ErrMsg); */ LLVMErrorTypeId LLVMGetStringErrorTypeId(void); -#ifdef __cplusplus -} -#endif +LLVM_C_EXTERN_C_END #endif |