Wrap the #include of <stdbool.h> in an #ifndef __cplusplus.

This should fix the MSVC build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191357 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Peter Collingbourne 2013-09-25 07:11:58 +00:00
parent 78099d11ff
commit aca74f0e0d

View File

@ -16,7 +16,9 @@
#ifndef LLVM_C_LTO_H
#define LLVM_C_LTO_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#include <stddef.h>
#include <unistd.h>