]> granicus.if.org Git - clang/commitdiff
Added #ifndef/#endif statements to protect the header from multiple inclusion.
authorTed Kremenek <kremenek@apple.com>
Fri, 31 Aug 2007 17:53:25 +0000 (17:53 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 31 Aug 2007 17:53:25 +0000 (17:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41648 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/CFG.h

index 460e23cdfcca22a4685e4758075d1be327b21c0b..a09d9346e9f96f4fc6250d52fb6edd9ab2b20596 100644 (file)
@@ -12,6 +12,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+#ifndef LLVM_CLANG_CFG_H
+#define LLVM_CLANG_CFG_H
+
 #include "llvm/ADT/GraphTraits.h"
 #include <list>
 #include <vector>
@@ -302,3 +305,5 @@ template <> struct GraphTraits<Inverse<const clang::CFG*> >
 };
   
 } // end llvm namespace
+
+#endif