mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 07:11:05 -06:00
Tests/FindOpenCL: Run clang-format to fix style
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
#ifdef __APPLE__
|
||||
#include <OpenCL/opencl.h>
|
||||
#include <OpenCL/opencl.h>
|
||||
#else
|
||||
#include <CL/cl.h>
|
||||
#include <CL/cl.h>
|
||||
#endif
|
||||
|
||||
int main()
|
||||
{
|
||||
cl_uint platformIdCount;
|
||||
|
||||
// We can't assert on the result because this may return an error if no ICD is
|
||||
// We can't assert on the result because this may return an error if no ICD
|
||||
// is
|
||||
// found
|
||||
clGetPlatformIDs (0, NULL, &platformIdCount);
|
||||
clGetPlatformIDs(0, NULL, &platformIdCount);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user