From 3120c18e08290e80ec4f109678269779cfe9e313 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Fri, 20 Aug 2010 17:38:44 +0000 Subject: [PATCH] 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 --- include/llvm/Support/Regex.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/llvm/Support/Regex.h b/include/llvm/Support/Regex.h index 91698659b7a..b46a66889e9 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 struct llvm_regex; @@ -74,3 +77,5 @@ namespace llvm { int error; }; } + +#endif // LLVM_SUPPORT_REGEX_H -- 2.34.1