aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-04-24 14:49:26 +0000
committerEric Christopher <echristo@gmail.com>2013-04-24 14:49:26 +0000
commitfa2d2b199f4551357c1696a9b49321cf03d8753d (patch)
treeca2f043e381b0f8e47b94f13a24a8af6a0911ef5 /include
parent13367123a8682de6db3feee6c9b9a7cc19e4ae9c (diff)
Add include guards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Wrap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Wrap.h b/include/llvm/Wrap.h
index 79790d4ea9..0dc5c78bd1 100644
--- a/include/llvm/Wrap.h
+++ b/include/llvm/Wrap.h
@@ -11,6 +11,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_WRAP_H
+#define LLVM_WRAP_H
+
#include "llvm-c/Core.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/IRBuilder.h"
@@ -117,3 +120,5 @@ namespace llvm {
return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
}
}
+
+#endif