Fix code format errors vs.2

This commit is contained in:
Grzegorz Wawiorko
2020-07-06 13:37:48 +02:00
committed by Alastair Murray
parent 44a240367e
commit 450f583800
5 changed files with 15 additions and 12 deletions

View File

@@ -38,12 +38,12 @@ test_status InitCL(cl_device_id device) {
cl_int error;
if (version < expected_min_version)
{
{
version_expected_info("Test", "OpenCL",
expected_min_version.to_string().c_str(),
version.to_string().c_str());
return TEST_SKIP;
}
return TEST_SKIP;
}
error = clGetDeviceInfo(device, CL_DEVICE_PLATFORM,
sizeof(platform), &platform, NULL);