From 283a9790bffa6536f4c26bd31d85f815bc64dd08 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Oct 2021 12:48:09 +0200 Subject: loplugin:indentation check for indent inside block look for places where the statements inside a block are not indented Change-Id: I0cbfa7e0b6fb194b2aff6fa7e070fb907d70ca2f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123885 Tested-by: Jenkins Reviewed-by: Noel Grandin --- opencl/source/opencl_device.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'opencl') diff --git a/opencl/source/opencl_device.cxx b/opencl/source/opencl_device.cxx index 3444caf74930..ca9f4f43b5d1 100644 --- a/opencl/source/opencl_device.cxx +++ b/opencl/source/opencl_device.cxx @@ -37,7 +37,7 @@ namespace { void DS_CHECK_STATUS(cl_int status, char const * name) { if (CL_SUCCESS != status) { - SAL_INFO("opencl.device", "Error code is " << status << " at " << name); + SAL_INFO("opencl.device", "Error code is " << status << " at " << name); } } -- cgit