diff options
author | Eike Rathke <erack@redhat.com> | 2017-12-18 20:41:30 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-12-19 13:11:02 +0100 |
commit | 8960ecc689ce41cfaa40b65d75830d7491b06463 (patch) | |
tree | 40660c5a7db312a9601cc4da044557659ba396c6 /opencl | |
parent | 7c46e0086802c22f5a5040d9161d4d2b3b2a3aff (diff) |
Explicitly qualify ICU types with icu:: namespace
It will be required by ICU 61 anyway, see
https://ssl.icu-project.org/repos/icu/trunk/icu4c/readme.html#RecBuild
Change-Id: Ib7accd75a6e35932048d779cf7bf0a5a33f8ed0d
Reviewed-on: https://gerrit.libreoffice.org/46741
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'opencl')
-rw-r--r-- | opencl/source/openclconfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx index b81ffed22937..0ec2347fb332 100644 --- a/opencl/source/openclconfig.cxx +++ b/opencl/source/openclconfig.cxx @@ -119,7 +119,7 @@ bool match(const OUString& rPattern, const OUString& rInput) UErrorCode nIcuError(U_ZERO_ERROR); icu::UnicodeString sIcuPattern(reinterpret_cast<const UChar*>(rPattern.getStr()), rPattern.getLength()); icu::UnicodeString sIcuInput(reinterpret_cast<const UChar*>(rInput.getStr()), rInput.getLength()); - RegexMatcher aMatcher(sIcuPattern, sIcuInput, 0, nIcuError); + icu::RegexMatcher aMatcher(sIcuPattern, sIcuInput, 0, nIcuError); return U_SUCCESS(nIcuError) && aMatcher.matches(nIcuError) && U_SUCCESS(nIcuError); } |