summaryrefslogtreecommitdiff
path: root/opencl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-11-19 18:27:25 +0100
committerStephan Bergmann <sbergman@redhat.com>2023-11-19 22:35:12 +0100
commit235ae98ae614315cfe3bb2baf52ca442bcc2f592 (patch)
tree30a39ce8095a14afbf34a556c7f4483e76fd724e /opencl
parent3bd3c41bc930406ec3d995a45a7f7060d572bbd0 (diff)
Extended loplugin:ostr: opencl
Change-Id: I126ed9e9fca6d1ab8d4e42ec0fe1ffb33a5f8ae8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159689 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'opencl')
-rw-r--r--opencl/inc/opencl_device_selection.h10
-rw-r--r--opencl/source/opencl_device.cxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/opencl/inc/opencl_device_selection.h b/opencl/inc/opencl_device_selection.h
index ed4914bbcf39..4baffbf2737c 100644
--- a/opencl/inc/opencl_device_selection.h
+++ b/opencl/inc/opencl_device_selection.h
@@ -110,7 +110,7 @@ inline OString getDeviceInfoString(cl_device_id aDeviceId, cl_device_info aDevic
inline OString getDeviceType(cl_device_id aDeviceId)
{
- OString sType = "";
+ OString sType = ""_ostr;
cl_device_type aDeviceType;
clGetDeviceInfo(aDeviceId, CL_DEVICE_TYPE, sizeof(aDeviceType), &aDeviceType, nullptr);
if (aDeviceType & CL_DEVICE_TYPE_CPU)
@@ -263,12 +263,12 @@ inline ds_status writeProfile(const OUString& rStreamName, std::unique_ptr<ds_pr
{
case DeviceType::NativeCPU:
aXmlWriter.startElement("type");
- aXmlWriter.content(OString("native"));
+ aXmlWriter.content("native"_ostr);
aXmlWriter.endElement();
break;
case DeviceType::OpenCLDevice:
aXmlWriter.startElement("type");
- aXmlWriter.content(OString("opencl"));
+ aXmlWriter.content("opencl"_ostr);
aXmlWriter.endElement();
aXmlWriter.startElement("name");
@@ -285,13 +285,13 @@ inline ds_status writeProfile(const OUString& rStreamName, std::unique_ptr<ds_pr
aXmlWriter.startElement("time");
if (rtl::math::approxEqual(rDevice.fTime, DBL_MAX))
- aXmlWriter.content(OString("max"));
+ aXmlWriter.content("max"_ostr);
else
aXmlWriter.content(OString::number(rDevice.fTime));
aXmlWriter.endElement();
aXmlWriter.startElement("errors");
- aXmlWriter.content(rDevice.bErrors ? OString("true") : OString("false"));
+ aXmlWriter.content(rDevice.bErrors ? "true"_ostr : "false"_ostr);
aXmlWriter.endElement();
aXmlWriter.endElement();
diff --git a/opencl/source/opencl_device.cxx b/opencl/source/opencl_device.cxx
index 10c3103d3631..9bebb3b35ba3 100644
--- a/opencl/source/opencl_device.cxx
+++ b/opencl/source/opencl_device.cxx
@@ -500,7 +500,7 @@ ds_device const & getDeviceSelection(
/* Setup */
std::unique_ptr<ds_profile> aProfile;
ds_status status;
- status = initDSProfile(aProfile, "LibreOffice v1");
+ status = initDSProfile(aProfile, "LibreOffice v1"_ostr);
if (status != DS_SUCCESS)
{