From: Mikhail Glushenkov Date: Fri, 20 Aug 2010 17:38:44 +0000 (+0000) Subject: Add include guards to Support/Regex.h. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3120c18e08290e80ec4f109678269779cfe9e313;p=oota-llvm.git 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 --- 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