aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-08-31 17:53:25 +0000
committerTed Kremenek <kremenek@apple.com>2007-08-31 17:53:25 +0000
commitcd881d534517f09a2fae10445f9b865f49ccc6c8 (patch)
tree99f35a9432ae96fccd305785681b47a8b6e07213
parentd7444aac1af1c2c1d5e5b7467ecf6006ee2d8abe (diff)
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
-rw-r--r--include/clang/AST/CFG.h5
1 files changed, 5 insertions, 0 deletions
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 <list>
#include <vector>
@@ -302,3 +305,5 @@ template <> struct GraphTraits<Inverse<const clang::CFG*> >
};
} // end llvm namespace
+
+#endif