summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Regex.h
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-04-07 04:17:22 +0000
committerCraig Topper <craig.topper@gmail.com>2014-04-07 04:17:22 +0000
commit34bc6b6e787f27b5c9e05c82de4c1b4ac9b117bc (patch)
tree8b1bfdc38d13cfbca1dbd93a0e77e8d1b89385c7 /include/llvm/Support/Regex.h
parentb81024bc6ef83ee4242b4fab77784a0b5ad4e1b8 (diff)
downloadllvm-34bc6b6e787f27b5c9e05c82de4c1b4ac9b117bc.tar.gz
llvm-34bc6b6e787f27b5c9e05c82de4c1b4ac9b117bc.tar.bz2
llvm-34bc6b6e787f27b5c9e05c82de4c1b4ac9b117bc.tar.xz
[C++11] Make use of 'nullptr' in the Support library.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Regex.h')
-rw-r--r--include/llvm/Support/Regex.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Support/Regex.h b/include/llvm/Support/Regex.h
index 2eea369ee4..bf533ca1aa 100644
--- a/include/llvm/Support/Regex.h
+++ b/include/llvm/Support/Regex.h
@@ -55,7 +55,7 @@ namespace llvm {
Regex(Regex &&regex) {
preg = regex.preg;
error = regex.error;
- regex.preg = NULL;
+ regex.preg = nullptr;
}
~Regex();
@@ -75,7 +75,7 @@ namespace llvm {
/// the first group is always the entire pattern.
///
/// This returns true on a successful match.
- bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = 0);
+ bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
/// sub - Return the result of replacing the first match of the regex in
/// \p String with the \p Repl string. Backreferences like "\0" in the
@@ -87,7 +87,8 @@ namespace llvm {
/// \param Error If non-null, any errors in the substitution (invalid
/// backreferences, trailing backslashes) will be recorded as a non-empty
/// string.
- std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
+ std::string sub(StringRef Repl, StringRef String,
+ std::string *Error = nullptr);
/// \brief If this function returns true, ^Str$ is an extended regular
/// expression that matches Str and only Str.