diff options
-rw-r--r-- | include/clang/AST/CFG.h | 5 |
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 |