summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-08 16:55:58 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-06-08 16:55:58 (GMT)
commit5572f5fffd040473c588215a7c87a12530e1548e (patch)
treed45dc23359e1db6a15169ff2697f29f3d3abb437 /Tests
parent1cfc750150065ee3b65ad66d2b37a3b28a9e799d (diff)
parentff08a80af19530c95db4faa921168fb9ab346047 (diff)
downloadCMake-5572f5fffd040473c588215a7c87a12530e1548e.zip
CMake-5572f5fffd040473c588215a7c87a12530e1548e.tar.gz
CMake-5572f5fffd040473c588215a7c87a12530e1548e.tar.bz2
Merge topic 'clang-format-again'
ff08a80a Source/CPack: Run clang-format to fix style 3b284432 Tests/FindOpenCL: Run clang-format to fix style
Diffstat (limited to 'Tests')
-rw-r--r--Tests/FindOpenCL/Test/main.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/Tests/FindOpenCL/Test/main.c b/Tests/FindOpenCL/Test/main.c
index b075caf..dc77636 100644
--- a/Tests/FindOpenCL/Test/main.c
+++ b/Tests/FindOpenCL/Test/main.c
@@ -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;
}