Rename clang config.h include guard from CONFIG_H to CLANG_CONFIG_H
to make it different from LLVM config.h include guard. llvm-svn: 250921
This commit is contained in:
parent
8f2c4da65a
commit
9d7ccdee0f
|
|
@ -1,9 +1,9 @@
|
|||
/* This generated file is for internal use. Do not include it from headers. */
|
||||
|
||||
#ifdef CONFIG_H
|
||||
#ifdef CLANG_CONFIG_H
|
||||
#error config.h can only be included once
|
||||
#else
|
||||
#define CONFIG_H
|
||||
#define CLANG_CONFIG_H
|
||||
|
||||
/* Bug report URL. */
|
||||
#define BUG_REPORT_URL "${BUG_REPORT_URL}"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
/* This generated file is for internal use. Do not include it from headers. */
|
||||
|
||||
#ifdef CONFIG_H
|
||||
#ifdef CLANG_CONFIG_H
|
||||
#error config.h can only be included once
|
||||
#else
|
||||
#define CONFIG_H
|
||||
#define CLANG_CONFIG_H
|
||||
|
||||
/* Bug report URL. */
|
||||
#undef BUG_REPORT_URL
|
||||
|
|
|
|||
Loading…
Reference in New Issue