forked from OSchip/llvm-project
parent
5cfe9294fe
commit
b71bc44bf4
|
@ -57,7 +57,7 @@ namespace llvm {
|
|||
|
||||
/// isValid - returns the error encountered during regex compilation, or
|
||||
/// matching, if any.
|
||||
bool isValid(std::string &Error);
|
||||
bool isValid(std::string &Error) const;
|
||||
|
||||
/// getNumMatches - In a valid regex, return the number of parenthesized
|
||||
/// matches it contains. The number filled in by match will include this
|
||||
|
|
|
@ -48,7 +48,7 @@ Regex::~Regex() {
|
|||
}
|
||||
}
|
||||
|
||||
bool Regex::isValid(std::string &Error) {
|
||||
bool Regex::isValid(std::string &Error) const {
|
||||
if (!error)
|
||||
return true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue