From cd881d534517f09a2fae10445f9b865f49ccc6c8 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 31 Aug 2007 17:53:25 +0000 Subject: [PATCH] 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 --- include/clang/AST/CFG.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.50.1