From: Ted Kremenek Date: Thu, 3 Apr 2008 04:38:39 +0000 (+0000) Subject: Added missing #ifndef...#define...#endif directives to protect against X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d065d6080f0620bb80b933f3f5d52d37bb2ea770;p=clang Added missing #ifndef...#define...#endif directives to protect against double includes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49126 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/GRExprEngine.h b/include/clang/Analysis/PathSensitive/GRExprEngine.h index f286816f38..336a140f4b 100644 --- a/include/clang/Analysis/PathSensitive/GRExprEngine.h +++ b/include/clang/Analysis/PathSensitive/GRExprEngine.h @@ -13,6 +13,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_CLANG_ANALYSIS_GREXPRENGINE +#define LLVM_CLANG_ANALYSIS_GREXPRENGINE + #include "clang/Analysis/PathSensitive/GRCoreEngine.h" #include "clang/Analysis/PathSensitive/ValueState.h" #include "clang/Analysis/PathSensitive/GRSimpleAPICheck.h" @@ -567,3 +570,4 @@ protected: }; } // end clang namespace +#endif