summaryrefslogtreecommitdiff
path: root/opencl
diff options
context:
space:
mode:
Diffstat (limited to 'opencl')
-rw-r--r--opencl/source/openclconfig.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index 79262be6b6cd..eaa0bba5e06c 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -79,7 +79,7 @@ OUString getToken(const OUString& string, sal_Int32& index)
result += token.copy(i, p - i);
if (p < token.getLength() - 2)
{
- result += OUString(static_cast<sal_Unicode>(token.copy(p+1, 2).toInt32(16)));
+ result += OUStringLiteral1(token.copy(p+1, 2).toInt32(16));
i = p + 3;
}
else