From: Ted Kremenek Date: Fri, 31 Aug 2007 17:53:25 +0000 (+0000) Subject: Added #ifndef/#endif statements to protect the header from multiple inclusion. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd881d534517f09a2fae10445f9b865f49ccc6c8;p=clang Added #ifndef/#endif statements to protect the header from multiple inclusion. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41648 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/CFG.h b/include/clang/AST/CFG.h index 460e23cdfc..a09d9346e9 100644 --- a/include/clang/AST/CFG.h +++ b/include/clang/AST/CFG.h @@ -12,6 +12,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_CLANG_CFG_H +#define LLVM_CLANG_CFG_H + #include "llvm/ADT/GraphTraits.h" #include #include @@ -302,3 +305,5 @@ template <> struct GraphTraits > }; } // end llvm namespace + +#endif