diff options
author | Evan Cheng <evan.cheng@apple.com> | 2013-04-03 23:12:39 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2013-04-03 23:12:39 +0000 |
commit | 7d2166a643a7c16b9b0c87441b662f66e79b131f (patch) | |
tree | c271913ddc310eaae3b62a087dd476c2144de93e /include/llvm-c/Object.h | |
parent | 9bede89bbe04e49953ce373620355d2de4b0c084 (diff) |
Make it possible to include llvm-c without including C++ headers. Patch by Filip Pizlo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Object.h')
-rw-r--r-- | include/llvm-c/Object.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/llvm-c/Object.h b/include/llvm-c/Object.h index e2dad62b4e..b6fe17a159 100644 --- a/include/llvm-c/Object.h +++ b/include/llvm-c/Object.h @@ -22,9 +22,11 @@ #include "llvm-c/Core.h" #include "llvm/Config/llvm-config.h" -#ifdef __cplusplus +#if defined(__cplusplus) && !defined(LLVM_DO_NOT_INCLUDE_CPP_HEADERS) #include "llvm/Object/ObjectFile.h" +#endif /* defined(__cplusplus) && !defined(LLVM_DO_NOT_INCLUDE_CPP_HEADERS) */ +#ifdef __cplusplus extern "C" { #endif @@ -99,7 +101,9 @@ const char *LLVMGetRelocationValueString(LLVMRelocationIteratorRef RI); #ifdef __cplusplus } +#endif +#if defined(__cplusplus) && !defined(LLVM_DO_NOT_INCLUDE_CPP_HEADERS) namespace llvm { namespace object { inline ObjectFile *unwrap(LLVMObjectFileRef OF) { @@ -142,8 +146,8 @@ namespace llvm { } } +#endif /* defined(__cplusplus) && !defined(LLVM_DO_NOT_INCLUDE_CPP_HEADERS) */ -#endif /* defined(__cplusplus) */ #endif |