summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-08-20 17:38:44 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-08-20 17:38:44 +0000
commit3120c18e08290e80ec4f109678269779cfe9e313 (patch)
treec269a1b1c19c731c15235eee0692da4d61c336ee /include
parent7112c86fc208145334aaa04812c794ce6feef416 (diff)
downloadllvm-3120c18e08290e80ec4f109678269779cfe9e313.tar.gz
llvm-3120c18e08290e80ec4f109678269779cfe9e313.tar.bz2
llvm-3120c18e08290e80ec4f109678269779cfe9e313.tar.xz
Add include guards to Support/Regex.h.
If the omission was intentional, please add a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111657 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Regex.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Support/Regex.h b/include/llvm/Support/Regex.h
index 91698659b7..b46a66889e 100644
--- a/include/llvm/Support/Regex.h
+++ b/include/llvm/Support/Regex.h
@@ -11,6 +11,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_SUPPORT_REGEX_H
+#define LLVM_SUPPORT_REGEX_H
+
#include <string>
struct llvm_regex;
@@ -74,3 +77,5 @@ namespace llvm {
int error;
};
}
+
+#endif // LLVM_SUPPORT_REGEX_H