diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:26:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:55 +0100 |
commit | 05b4902145b0924393b5ae4d9e9dfb92d2926b99 (patch) | |
tree | 24ae58a44bf1239ab96d34cc9028118261b2d3ff /ucb/source/regexp/regexp.cxx | |
parent | 1c4f33b5d8ba6a8cebb0235bb2e7e37e33045a5b (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I72bf3e008a8941d6e0fdea81b6b3e4a959ff28c5
Diffstat (limited to 'ucb/source/regexp/regexp.cxx')
-rw-r--r-- | ucb/source/regexp/regexp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/regexp/regexp.cxx b/ucb/source/regexp/regexp.cxx index 5856dbf7a6f7..76688d3f103e 100644 --- a/ucb/source/regexp/regexp.cxx +++ b/ucb/source/regexp/regexp.cxx @@ -99,8 +99,8 @@ bool Regexp::matches(OUString const & rString, sal_Unicode const * pBlock1Begin = p; sal_Unicode const * pBlock1End = pEnd; - sal_Unicode const * pBlock2Begin = 0; - sal_Unicode const * pBlock2End = 0; + sal_Unicode const * pBlock2Begin = nullptr; + sal_Unicode const * pBlock2End = nullptr; switch (m_eKind) { |