From: Chris Lattner Date: Fri, 29 Feb 2008 17:10:38 +0000 (+0000) Subject: make include guards more unique. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef52a2fb2ace36c92f88c6e125bd7defa17dafa5;p=clang make include guards more unique. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47754 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h index b136c2b061..509e8296d2 100644 --- a/CodeGen/CodeGenFunction.h +++ b/CodeGen/CodeGenFunction.h @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef CODEGEN_CODEGENFUNCTION_H -#define CODEGEN_CODEGENFUNCTION_H +#ifndef CLANG_CODEGEN_CODEGENFUNCTION_H +#define CLANG_CODEGEN_CODEGENFUNCTION_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" diff --git a/CodeGen/CodeGenModule.h b/CodeGen/CodeGenModule.h index 7ea6ef9941..7863f7bebd 100644 --- a/CodeGen/CodeGenModule.h +++ b/CodeGen/CodeGenModule.h @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef CODEGEN_CODEGENMODULE_H -#define CODEGEN_CODEGENMODULE_H +#ifndef CLANG_CODEGEN_CODEGENMODULE_H +#define CLANG_CODEGEN_CODEGENMODULE_H #include "CodeGenTypes.h" #include "llvm/ADT/DenseMap.h" diff --git a/CodeGen/CodeGenTypes.h b/CodeGen/CodeGenTypes.h index 96187d81d6..08a2467106 100644 --- a/CodeGen/CodeGenTypes.h +++ b/CodeGen/CodeGenTypes.h @@ -11,8 +11,8 @@ // //===----------------------------------------------------------------------===// -#ifndef CODEGEN_CODEGENTYPES_H -#define CODEGEN_CODEGENTYPES_H +#ifndef CLANG_CODEGEN_CODEGENTYPES_H +#define CLANG_CODEGEN_CODEGENTYPES_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallSet.h"